| 123456789101112131415161718 |
- namespace qdr.app.bundleboiler.data.Model
- {
- public abstract class DmBaseChildHeadedEntity<TParent> : DmBaseChildEntity<TParent> where TParent : DmBaseEntity
- {
- /// <summary>
- /// The code or short code of the entity. Required.
- /// </summary>
- public required string Code { get; set; }
- /// <summary>
- /// The name of the entity. Required.
- /// </summary>
- public required string Name { get; set; }
- /// <summary>
- /// The description of the entity.
- /// </summary>
- public string? Description { get; set; }
- }
- }
|