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