9 lines
242 B
C#
9 lines
242 B
C#
using Speckle.ProxyGenerator;
|
|
|
|
namespace ProxyInterfaceConsumer
|
|
{
|
|
[Speckle.ProxyGenerator.Proxy(typeof(ProxyInterfaceConsumer.PersonT<>), ImplementationOptions.None)]
|
|
public partial interface IPersonT //<T> where T : struct
|
|
{ }
|
|
}
|