narsil/Tanshu.Accounts.Contracts/Data Contracts/Role.cs
2018-08-24 16:11:33 +05:30

17 lines
357 B
C#

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>();
}
}
}