You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
791 B
47 lines
791 B
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; } |
|
} |
|
} |