export class CasConfig { authorizeUrl: string; redirectUriKey: string; voucherKey: string; innerLoginUri: string; constructor( options: { authorizeUrl?: string; redirectUriKey?: string; voucherKey?: string; innerLoginUri?: string; } = {} ) { this.authorizeUrl = options.authorizeUrl || ""; this.redirectUriKey = options.redirectUriKey || ""; this.voucherKey = options.voucherKey || ""; this.innerLoginUri = options.innerLoginUri || ""; } }