using System.Collections.Generic; using LOC.Core.Model.Account; namespace LOC.Core.Tokens.Client { using System.Collections.ObjectModel; public class AccountToken { public AccountToken() { } public AccountToken(Account account) { LastLogin = account.LastLogin; IpAddresses = new Collection(); MacAddresses = new Collection(); IpAliases = new Collection(); MacAliases = new Collection(); account.IpAddresses = new List(); account.MacAddresses = new List(); } public long TotalPlayingTime { get; set; } public long LastLogin { get; set; } public int LoginCount { get; set; } public Collection IpAddresses { get; set; } public Collection MacAddresses { get; set; } public Collection IpAliases { get; set; } public Collection MacAliases { get; set; } } }