Files
ProxyGenerator/src-examples/ProxyInterfaceConsumer/IPerson.cs
T
Stef Heyenrath c536e194e7 Add support for Events (#23)
* event wip...

* Add support for 'event'

* event example
2021-08-03 21:03:45 +02:00

7 lines
160 B
C#

namespace ProxyInterfaceConsumer
{
[ProxyInterfaceGenerator.Proxy(typeof(ProxyInterfaceConsumer.Person))]
public partial interface IPerson
{
}
}