mirror of
https://github.com/NexusForever/NexusForever
synced 2026-08-14 00:26:05 -04:00
11 lines
269 B
C#
11 lines
269 B
C#
namespace NexusForever.Database.Auth.Model
|
|
{
|
|
public class AccountRoleModel
|
|
{
|
|
public uint Id { get; set; }
|
|
public uint RoleId { get; set; }
|
|
|
|
public AccountModel Account { get; set; }
|
|
public RoleModel Role { get; set; }
|
|
}
|
|
}
|