mirror of
https://github.com/FabInfra/capnproto-dotnetcore_Runtime.git
synced 2025-03-12 23:01:44 +01:00
10 lines
178 B
C#
10 lines
178 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace CapnpC.CSharp.Generator.Model
|
|||
|
{
|
|||
|
interface IHasGenericParameters
|
|||
|
{
|
|||
|
List<string> GenericParameters { get; }
|
|||
|
}
|
|||
|
}
|