Server.Game.Database.Models.UserAccount.UserAccount C# (CSharp) Method

UserAccount() public method

public UserAccount ( string username, string password, string email ) : System.Collections.Generic
username string
password string
email string
return System.Collections.Generic
        public UserAccount(string username, string password, string email)
            : this()
        {
            Username = username;
            Password = password;
            Email = email;
        }

Same methods

UserAccount::UserAccount ( ) : System.Collections.Generic
UserAccount