All Downloads are FREE. Search and download functionalities are using the official Maven repository.

Net.5.0.Rosetta.Attributes.CdmName.cs Maven / Gradle / Ivy

The newest version!
namespace Rosetta.Lib.Attributes
{
    using System;

    /// 
    /// Specifies the original name for this object used by ISDA CDM.
    /// 
    [AttributeUsage(AttributeTargets.Enum, Inherited = false)]
    public class CdmName : Attribute
    {
        public CdmName(string value)
        {
            Value = value;
        }

        public string Value { get; }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy