BlottoBeats.Library.Authentication.UserToken.UserToken C# (CSharp) Method

UserToken() public method

public UserToken ( String username, System.DateTime expires, string token ) : System
username String
expires System.DateTime
token string
return System
        public UserToken(String username, DateTime expires, string token)
        {
            this.username = username;
            this.expires = expires;
            this.token = token;
        }