mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-05-09 23:28:02 +08:00
16 lines
390 B
C#
16 lines
390 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace OpenAuth.Domain
|
|
{
|
|
public partial class PageElementGrant
|
|
{
|
|
public int Id { get; set; }
|
|
public int ElementId { get; set; }
|
|
public int UserId { get; set; }
|
|
public int RoleId { get; set; }
|
|
public int PostId { get; set; }
|
|
public int GrantType { get; set; }
|
|
}
|
|
}
|