Files
ProxyGenerator/src-examples/ProxyInterfaceConsumer/IPersonT.cs
T
2022-02-01 18:49:01 +01:00

7 lines
187 B
C#

namespace ProxyInterfaceConsumer
{
[ProxyInterfaceGenerator.Proxy(typeof(ProxyInterfaceConsumer.PersonT<>))]
public partial interface IPersonT //<T> where T : struct
{
}
}