namespace Nethereum.ABI.FunctionEncoding.Attributes { /// /// Interface to decorate a class as Event to enable the related extensions /// public interface IEventDTO { } /// /// Class to extend a class as an Event to enable the related extensions (Simplification for FSharp) /// public class EventDTO : IEventDTO { } }