IndieAPI.Server.UserManagement.User.User C# (CSharp) Method

User() public method

public User ( Int32 userNo ) : System
userNo System.Int32
return System
        public User(Int32 userNo)
        {
            UserNo = userNo;

            Profile = new UserProfile(this);
            LoginCounter = new LoginCounter(this);
            TextBox = new TextBox(this);

            LastPulse = Stopwatch.StartNew();
        }