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

24
OpenAuth.Domain/Button.cs Normal file
View File

@@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
namespace OpenAuth.Domain
{
public partial class Button
{
public Button()
{
this.RoleMenuButtons = new List<RoleMenuButton>();
}
public string ButtonId { get; set; }
public string FullName { get; set; }
public string Img { get; set; }
public string Event { get; set; }
public string Control_ID { get; set; }
public string Category { get; set; }
public string Description { get; set; }
public Nullable<int> Enabled { get; set; }
public Nullable<int> SortCode { get; set; }
public virtual ICollection<RoleMenuButton> RoleMenuButtons { get; set; }
}
}