mirror of
https://github.com/bitwarden/directory-connector
synced 2026-02-27 01:33:15 +00:00
12 lines
223 B
TypeScript
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;
|
|
}
|
|
}
|