// Copyright © 2017-2018 Atomic Software, LLC. All Rights Reserved. // See LICENSE.md for full license information. using Atom.Core.Collections; using Atom.Core.Game.GameObjects.Characters; namespace Atom.Core.Game { public class Account { public int UserNo { get; set; } public string Username { get; set; } public List Characters { get; set; } public Account() { Characters = new List(); } } }