Attribute.cs 450 B

1234567891011121314
  1. namespace qdr.app.bundleboiler.data.Model
  2. {
  3. public abstract class Attribute<TOwner> : DmBaseChildEntity<AttributeCategory> where TOwner : DmBaseEntity
  4. {
  5. /// <summary>
  6. /// The value of the attribute.
  7. /// </summary>
  8. public string? Value { get; set; }
  9. /// <summary>
  10. /// The owner of the attribute.
  11. /// </summary>
  12. public required TOwner Owner { get; set; }
  13. }
  14. }