Binboo.Core.User.User C# (CSharp) Method

User() public method

public User ( string name, string password, string countryCode = null ) : System
name string
password string
countryCode string
return System
        public User(string name, string password, string countryCode = null)
        {
            _name = name;
            _password = password;
            _countryCode = countryCode ?? CultureInfo.CurrentCulture.TwoLetterISOLanguageName;
        }
User