1
0
mirror of https://github.com/bitwarden/jslib synced 2026-01-07 19:13:15 +00:00
Files
jslib/src/cli/models/response/stringResponse.ts
2019-03-15 22:33:19 -04:00

12 lines
239 B
TypeScript

import { BaseResponse } from './baseResponse';
export class StringResponse implements BaseResponse {
object: string;
data: string;
constructor(data: string) {
this.object = 'string';
this.data = data;
}
}