mirror of
https://github.com/bitwarden/browser
synced 2025-12-13 06:43:35 +00:00
12 lines
277 B
TypeScript
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;
|
|
}
|
|
}
|