namespace BrilliantSightClient.Model.GradeLevel.Entity; public class UseDataSet { private string _name; private string _eName; private string _key; private string _unit; private bool _hasCut; private bool _hasSym; public string Name { get => _name; set { _name = value; } } public string EName { get => _eName; set { _eName = value; } } public string Key { get => _key; set { _key = value; } } public string Unit { get => _unit; set { _unit = value; } } public bool HasCut { get => _hasCut; set { _hasCut = value; } } public bool HasSym { get => _hasSym; set { _hasSym = value; } } }