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

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

public Account ( ) : System
Результат System
		public Account()
		{
			this.Creation = DateTime.Now;
			this.LastLogin = DateTime.Now;

			this.PremiumServices = new PremiumServices();

			this.CharacterCards = new List<Card>();
			this.PetCards = new List<Card>();
			this.Gifts = new List<Gift>();

			this.Characters = new List<Character>();
			this.Pets = new List<Character>();
		}