- namespace qdr.app.bundleboiler.data.Model
- {
- public abstract class Attribute<TOwner> : DmBaseChildEntity<AttributeCategory> where TOwner : DmBaseEntity
- {
- /// <summary>
- /// The value of the attribute.
- /// </summary>
- public string? Value { get; set; }
- /// <summary>
- /// The owner of the attribute.
- /// </summary>
- public required TOwner Owner { get; set; }
- }
- }
|