📄 roleinfo.cs
字号:
namespace PowerEasy.Model.UserManage
{
using PowerEasy.Model;
using System;
public class RoleInfo : PowerEasy.Model.Nullable
{
private string m_Description;
private int m_RoleId;
private string m_RoleName;
public RoleInfo()
{
}
public RoleInfo(bool value)
{
base.IsNull = value;
}
public string Description
{
get
{
return this.m_Description;
}
set
{
this.m_Description = value;
}
}
public int RoleId
{
get
{
return this.m_RoleId;
}
set
{
this.m_RoleId = value;
}
}
public string RoleName
{
get
{
return this.m_RoleName;
}
set
{
this.m_RoleName = value;
}
}
public string RoleNameAndDescription
{
get
{
return (this.m_RoleName + ": " + this.m_Description);
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -