mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-08-23 22:11:35 +08:00
17 lines
457 B
C#
17 lines
457 B
C#
using OpenAuth.Domain.Utility;
|
|
|
|
namespace OpenAuth.Domain.Model
|
|
{
|
|
public partial class DataPermission :EntityBase<string>, IAggregateRoot
|
|
{
|
|
public string RoleId { get; set; }
|
|
public string ResourceId { get; set; }
|
|
public string ObjectId { get; set; }
|
|
public virtual Role Role { get; set; }
|
|
protected override void Validate()
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
}
|
|
}
|