narsil/Tanshu.Accounts.Contracts/Data Contracts/Role.cs

17 lines
357 B
C#
Raw Normal View History

2018-08-24 10:41:33 +00:00
using System;
using System.Collections.Generic;
namespace Tanshu.Accounts.Entities
{
public class Role
{
public Guid RoleID { get; set; }
public string Name { get; set; }
public List<Permission> Permissions { get; set; }
public Role()
{
Permissions = new List<Permission>();
}
}
}