GitHub.Models.UserAndScopes.UserAndScopes C# (CSharp) Méthode

UserAndScopes() public méthode

Initializes a new instance of the UserAndScopes class.
public UserAndScopes ( Octokit.User user, IReadOnlyList scopes ) : System.Collections.Generic
user Octokit.User The user information.
scopes IReadOnlyList The scopes. May be null.
Résultat System.Collections.Generic
        public UserAndScopes(User user, IReadOnlyList<string> scopes)
        {
            User = user;
            Scopes = scopes;
        }
UserAndScopes