OpenAuth.Net/OpenAuth.Domain/Button.cs
2015-04-15 23:57:36 +08:00

25 lines
727 B
C#

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