namespace qdr.app.bundleboiler.data.Model { public abstract class DmBaseHeadedEntity : DmBaseEntity { /// /// The code or short code of the entity. Required. /// public string Code { get; set; } /// /// The name of the entity. Required. /// public string Name { get; set; } /// /// The description of the entity. /// public string? Description { get; set; } protected DmBaseHeadedEntity() : base() { Code = string.Empty; Name = string.Empty;} } }