bitwarden-estensione-browser/src/models/response/globalDomainResponse.ts

12 lines
262 B
TypeScript
Raw Normal View History

2018-01-20 20:12:18 +01:00
export class GlobalDomainResponse {
type: number;
domains: string[];
excluded: number[];
constructor(response: any) {
this.type = response.Type;
this.domains = response.Domains;
this.excluded = response.Excluded;
}
}