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