Files
ProxyGenerator/src-examples/ProxyInterfaceConsumer/IPersonT.cs
T
Adam Hathcock e341772cbc add csharpier
2024-05-21 16:34:46 +01:00

7 lines
184 B
C#

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