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

8 lines
226 B
C#

namespace ProxyInterfaceConsumer
{
[ProxyInterfaceGenerator.Proxy(typeof(ProxyInterfaceConsumer.PersonTT<,>))]
public partial interface IPersonTT<T1, T2>
where T1 : struct
where T2 : class, new() { }
}