Aura.Channel.Database.Account.Account C# (CSharp) Метод

Account() публичный Метод

Creates new account instance.
public Account ( ) : System
Результат 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;
		}