Enumeration.cs 691 B

1234567891011121314151617
  1. namespace qdr.app.bundleboiler.data.Model
  2. {
  3. /// <summary>
  4. /// Universal enumeration catalogue. Represents ordered collection of code-name values (with description), grouped by classType (means enumeration class ownership)
  5. /// </summary>
  6. public class Enumeration : DmBaseHeadedEntity
  7. {
  8. /// <summary>
  9. /// The class type of the enumeration. Determining group of enumerations. Required.
  10. /// </summary>
  11. public EnumClassType ClassType { get; set; }
  12. /// <summary>
  13. /// The order number of the enumeration in the class type. Required.
  14. /// </summary>
  15. public int OrderNo { get; set; } = 0;
  16. }
  17. }