all files / src/models/ client.js

100% Statements 9/9
100% Branches 0/0
100% Functions 1/1
100% Lines 9/9
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15      21× 21× 21× 21× 21× 21× 21×      
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
class Client {
    constructor(name, id, secret, allowedScopes, redirectUris, allowForgotPassword, allowRegister) {
        this.name = name;
        this.id = id;
        this.secret = secret;
        this.allowedScopes = allowedScopes;
        this.redirectUris = redirectUris;
        this.allowForgotPassword = allowForgotPassword;
        this.allowRegister = allowRegister;
    }
}
exports.Client = Client;
//# sourceMappingURL=client.js.map