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 AccountCostumeUnlock { get; set; } = new HashSet(); public ICollection AccountCurrency { get; set; } = new HashSet(); public ICollection AccountEntitlement { get; set; } = new HashSet(); public ICollection AccountGenericUnlock { get; set; } = new HashSet(); public ICollection AccountKeybinding { get; set; } = new HashSet(); public ICollection AccountPermission { get; set; } = new HashSet(); public ICollection AccountRole { get; set; } = new HashSet(); } }