mirror of
https://github.com/FabInfra/capnproto-dotnetcore_Runtime.git
synced 2025-03-13 07:11:44 +01:00
13 lines
264 B
C#
13 lines
264 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|