mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-07-16 07:59:54 +08:00
16 lines
470 B
C#
16 lines
470 B
C#
namespace OpenAuth.Domain
|
|
{
|
|
public partial class Button
|
|
{
|
|
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 int SortCode { get; set; }
|
|
}
|
|
}
|