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