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

11 lines
185 B
C#
Raw Permalink Normal View History

2018-08-24 10:41:33 +00:00
using System;
namespace Tanshu.Accounts.Entities
{
public class Permission
{
public Guid PermissionID { get; set; }
public string Name { get; set; }
}
}