OpenAuth.Net/OpenAuth.Domain/Role.cs

16 lines
476 B
C#

namespace OpenAuth.Domain
{
public partial class Role
{
public string RoleId { get; set; }
public string ParentId { get; set; }
public string FullName { get; set; }
public string Category { get; set; }
public string Description { get; set; }
public bool Enabled { get; set; }
public int SortCode { get; set; }
public bool DeleteMark { get; set; }
public string DepartmentId { get; set; }
}
}