mirror of
https://github.com/NexusForever/NexusForever
synced 2026-08-14 00:26:05 -04:00
24 lines
1.3 KiB
C#
24 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace NexusForever.Database.Auth.Model
|
|
{
|
|
public class AccountModel
|
|
{
|
|
public uint Id { get; set; }
|
|
public string Email { get; set; }
|
|
public string S { get; set; }
|
|
public string V { get; set; }
|
|
public string GameToken { get; set; }
|
|
public string SessionKey { get; set; }
|
|
public DateTime CreateTime { get; set; }
|
|
|
|
public ICollection<AccountCostumeUnlockModel> AccountCostumeUnlock { get; set; } = new HashSet<AccountCostumeUnlockModel>();
|
|
public ICollection<AccountCurrencyModel> AccountCurrency { get; set; } = new HashSet<AccountCurrencyModel>();
|
|
public ICollection<AccountEntitlementModel> AccountEntitlement { get; set; } = new HashSet<AccountEntitlementModel>();
|
|
public ICollection<AccountGenericUnlockModel> AccountGenericUnlock { get; set; } = new HashSet<AccountGenericUnlockModel>();
|
|
public ICollection<AccountKeybindingModel> AccountKeybinding { get; set; } = new HashSet<AccountKeybindingModel>();
|
|
public ICollection<AccountPermissionModel> AccountPermission { get; set; } = new HashSet<AccountPermissionModel>();
|
|
public ICollection<AccountRoleModel> AccountRole { get; set; } = new HashSet<AccountRoleModel>();
|
|
}
|
|
}
|