TShockAPI.DB.User.User C# (CSharp) Method

User() public method

Default constructor for a user object; holds no data.
public User ( ) : System
return System
        public User()
        {
            Name = "";
            Password = "";
            UUID = "";
            Group = "";
            Registered = "";
            LastAccessed = "";
            KnownIps = "";
        }

Same methods

User::User ( string name, string pass, string uuid, string group, string registered, string last, string known ) : System