mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 17:38:01 +08:00
14 lines
411 B
C#
14 lines
411 B
C#
namespace OpenAuth.Domain
|
|
{
|
|
public partial class RoleMenuButton
|
|
{
|
|
public string RoleMenuButtonId { get; set; }
|
|
public string RoleId { get; set; }
|
|
public string MenuId { get; set; }
|
|
public string ButtonId { get; set; }
|
|
public virtual Button Button { get; set; }
|
|
public virtual Menu Menu { get; set; }
|
|
public virtual Role Role { get; set; }
|
|
}
|
|
}
|