DmBaseHeadedEntity.cs 652 B

123456789101112131415161718192021
  1. namespace qdr.app.bundleboiler.data.Model
  2. {
  3. public abstract class DmBaseHeadedEntity : DmBaseEntity
  4. {
  5. /// <summary>
  6. /// The code or short code of the entity. Required.
  7. /// </summary>
  8. public string Code { get; set; }
  9. /// <summary>
  10. /// The name of the entity. Required.
  11. /// </summary>
  12. public string Name { get; set; }
  13. /// <summary>
  14. /// The description of the entity.
  15. /// </summary>
  16. public string? Description { get; set; }
  17. protected DmBaseHeadedEntity() : base() { Code = string.Empty; Name = string.Empty;}
  18. }
  19. }