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