namespace Nethereum.ABI.FunctionEncoding.Attributes
{
///
/// Interface to decorate a class as a FunctionOutput to enable
/// the decoding extensions
///
public interface IFunctionOutputDTO
{
}
///
/// Class to extend a class as a FunctionOutput to enable the decoding extensions (Simplification for FSharp)
///
public class FunctionOutputDTO : IFunctionOutputDTO
{
}
}