1
0
mirror of https://github.com/bitwarden/directory-connector synced 2026-02-27 01:33:15 +00:00
Files
directory-connector/src-cli/cli/models/response/stringResponse.ts
2026-02-26 11:29:30 -05:00

12 lines
223 B
TypeScript

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