Status.cs 501 B

123456789101112131415161718192021
  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. }
  19. }