bitwarden-estensione-browser/libs/common/src/auth/models/response/sso-pre-validate.response.ts

11 lines
259 B
TypeScript

import { BaseResponse } from "../../../models/response/base.response";
export class SsoPreValidateResponse extends BaseResponse {
token: string;
constructor(response: any) {
super(response);
this.token = this.getResponseProperty("Token");
}
}