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