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 Permissions { get; set; } public Role() { Permissions = new List(); } } }