mirror of
https://github.com/NexusForever/NexusForever
synced 2026-08-14 00:26:05 -04:00
13 lines
448 B
C#
13 lines
448 B
C#
using System.Collections.Generic;
|
|
|
|
namespace NexusForever.Database.Auth.Model
|
|
{
|
|
public class PermissionModel
|
|
{
|
|
public uint Id { get; set; }
|
|
public string Name { get; set; }
|
|
|
|
public ICollection<RolePermissionModel> RolePermission { get; set; } = new HashSet<RolePermissionModel>();
|
|
public ICollection<AccountPermissionModel> AccountPermission { get; set; } = new HashSet<AccountPermissionModel>();
|
|
}
|
|
}
|