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.

46 lines
864 B

namespace BrilliantSightClient.Model.GradeLevel.Entity;
public class LevelSetEntity
{
private string _name;
private string _eName;
private string _aName;
private int _short;
/// <summary>
/// 级别名称
/// </summary>
public string Name
{
get => _name;
set { _name = value; }
}
/// <summary>
/// 英文名
/// </summary>
public string EName
{
get => _eName;
set { _eName = value; }
}
/// <summary>
/// 简称
/// </summary>
public string AName
{
get => _aName;
set { _aName = value; }
}
/// <summary>
/// 排序
/// </summary>
public int Short
{
get => _short;
set { _short = value; }
}
/// <summary>
/// 签名
/// </summary>
public string Sign { get; set; }
}