13 lines
264 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
namespace CapnpC.CSharp.Generator.Model
{
class SourceInfo
{
public string DocComment { get; set; }
public IReadOnlyList<string> MemberDocComments { get; set; }
}
}