AttributeCategory.cs 621 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace qdr.app.bundleboiler.data.Model
  7. {
  8. /// <summary>
  9. /// The attribute category.
  10. /// </summary>
  11. public class AttributeCategory : DmBaseHeadedEntity
  12. {
  13. /// <summary>
  14. /// The default value of the attribute.
  15. /// </summary>
  16. public string? DefaultValue { get; set; }
  17. /// <summary>
  18. /// The class type of the attribute.
  19. /// </summary>
  20. public required AttrClassType ClassType { get; set; }
  21. }
  22. }