Aura.Channel.Database.Account.Account C# (CSharp) Method

Account() public method

Creates new account instance.
public Account ( ) : System
return System
		public Account()
		{
			this.Characters = new List<Character>();
			this.Pets = new List<Pet>();
			this.Vars = new ScriptVariables();
			this.Bank = new BankInventory();
			this.PremiumServices = new PremiumServices();

			this.LastLogin = DateTime.Now;
		}