1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-13 06:43:35 +00:00
Files
browser/src/models/response/templateResponse.ts
2019-03-15 22:34:59 -04:00

12 lines
277 B
TypeScript

import { BaseResponse } from 'jslib/cli/models/response/baseResponse';
export class TemplateResponse implements BaseResponse {
object: string;
template: any;
constructor(template: any) {
this.object = 'template';
this.template = template;
}
}