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