mirror of
https://github.com/FabInfra/capnproto-dotnetcore_Runtime.git
synced 2025-03-12 23:01:44 +01:00
12 lines
232 B
C#
12 lines
232 B
C#
|
|
|||
|
namespace CapnpC.CSharp.Generator.Model
|
|||
|
{
|
|||
|
interface IDefinition
|
|||
|
{
|
|||
|
ulong Id { get; }
|
|||
|
bool IsGenerated { get; }
|
|||
|
TypeTag Tag { get; }
|
|||
|
IHasNestedDefinitions DeclaringElement { get; }
|
|||
|
}
|
|||
|
}
|