Status.cs 857 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.Deviation
  7. {
  8. public class Status : BaseEntity
  9. {
  10. /// <summary>
  11. /// Description
  12. /// </summary>
  13. public string Description { get; set; }
  14. /// <summary>
  15. /// Determines if this state is defaultly selected
  16. /// </summary>
  17. public bool IsDefault { get; set; }
  18. /// <summary>
  19. /// Determines if this state sets the value of the deviation to zero
  20. /// </summary>
  21. public bool IsZeroValue { get; set; }
  22. /// <summary>
  23. /// Determines if this state sets the value of the deviation to zero for summarize
  24. /// </summary>
  25. public bool IsZeroSummarize { get; set; }
  26. }
  27. }