bitwarden-estensione-browser/apps/cli/src/models/response/templateResponse.ts

12 lines
266 B
TypeScript
Raw Normal View History

2021-12-20 18:04:00 +01:00
import { BaseResponse } from "jslib-node/cli/models/response/baseResponse";
2018-05-14 22:25:14 +02:00
2018-05-15 18:18:47 +02:00
export class TemplateResponse implements BaseResponse {
2021-12-20 18:04:00 +01:00
object: string;
template: any;
2018-05-14 22:25:14 +02:00
2021-12-20 18:04:00 +01:00
constructor(template: any) {
this.object = "template";
this.template = template;
}
2018-05-14 22:25:14 +02:00
}