This commit is contained in:
yubaolee
2015-04-15 23:57:36 +08:00
commit 7c42a3fc9f
119 changed files with 18893 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
namespace OpenAuth.Domain
{
public partial class DataPermission
{
public string Id { get; set; }
public string RoleId { get; set; }
public string ResourceId { get; set; }
public string ObjectId { get; set; }
public virtual Role Role { get; set; }
}
}