1
0
mirror of https://github.com/bitwarden/cli synced 2026-01-08 03:03:14 +00:00
Files
cli/src/models/response/stringResponse.ts
2018-05-15 12:18:47 -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;
}
}