mirror of
https://github.com/NexusForever/NexusForever
synced 2026-08-14 00:26:05 -04:00
11 lines
284 B
C#
11 lines
284 B
C#
namespace NexusForever.Database.Auth.Model
|
|
{
|
|
public class RolePermissionModel
|
|
{
|
|
public uint Id { get; set; }
|
|
public uint PermissionId { get; set; }
|
|
|
|
public RoleModel Role { get; set; }
|
|
public PermissionModel Permission { get; set; }
|
|
}
|
|
}
|