Files
ProxyGenerator/src-examples/ProxyInterfaceConsumer/IPersonTT.cs
T
2022-02-04 11:33:26 +01:00

9 lines
234 B
C#

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