namespace qdr.app.bundleboiler.data.Model
{
///
/// Universal enumeration catalogue. Represents ordered collection of code-name values (with description), grouped by classType (means enumeration class ownership)
///
public class Enumeration : DmBaseHeadedEntity
{
///
/// The class type of the enumeration. Determining group of enumerations. Required.
///
public EnumClassType ClassType { get; set; }
///
/// The order number of the enumeration in the class type. Required.
///
public int OrderNo { get; set; } = 0;
}
}