State.cs 762 B

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace GreenTree.Nachtragsmanagement.Core.Domain.Appendix
  7. {
  8. public class State : BaseEntity
  9. {
  10. /// <summary>
  11. /// Description
  12. /// </summary>
  13. public string Description { get; set; }
  14. /// <summary>
  15. /// Color Hex-Code
  16. /// </summary>
  17. public string HexColor { get; set; }
  18. /// <summary>
  19. /// Determines if this state is defaultly selected
  20. /// </summary>
  21. public bool IsDefault { get; set; }
  22. /// <summary>
  23. /// Determines if this state is the final state
  24. /// </summary>
  25. public bool IsFinish { get; set; }
  26. }
  27. }