| 1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace qdr.app.bundleboiler.data.Model
- {
- /// <summary>
- /// The attribute category.
- /// </summary>
- public class AttributeCategory : DmBaseHeadedEntity
- {
- /// <summary>
- /// The default value of the attribute.
- /// </summary>
- public string? DefaultValue { get; set; }
- /// <summary>
- /// The class type of the attribute.
- /// </summary>
- public required AttrClassType ClassType { get; set; }
- }
- }
|