mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-07-18 04:33:27 +08:00
27 lines
829 B
C#
27 lines
829 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace OpenAuth.Domain.Model
|
|
{
|
|
public partial class Button
|
|
{
|
|
public Button()
|
|
{
|
|
this.RoleMenuButtons = new List<RoleMenuButton>();
|
|
this.Menus = new List<Menu>();
|
|
}
|
|
|
|
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 bool Enabled { get; set; }
|
|
public Nullable<int> SortCode { get; set; }
|
|
public virtual ICollection<RoleMenuButton> RoleMenuButtons { get; set; }
|
|
public virtual ICollection<Menu> Menus { get; set; }
|
|
}
|
|
}
|