mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 09:43:23 +00:00
12 lines
262 B
TypeScript
12 lines
262 B
TypeScript
export class GlobalDomainResponse {
|
|
type: number;
|
|
domains: string[];
|
|
excluded: number[];
|
|
|
|
constructor(response: any) {
|
|
this.type = response.Type;
|
|
this.domains = response.Domains;
|
|
this.excluded = response.Excluded;
|
|
}
|
|
}
|