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

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

namespace Rosetta.Lib.Attributes
{
    using System;

    /// 
    /// Specifies the name of the data rule being implemented.
    /// 
    [AttributeUsage(AttributeTargets.Class, Inherited = false)]
    public class RosettaChoiceRuleAttribute : Attribute
    {
        public string Value { get; set; }

        public RosettaChoiceRuleAttribute(string value)
        {
            Value = value;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy