mirror of
https://github.com/bitwarden/directory-connector
synced 2025-12-05 23:53:21 +00:00
16 lines
260 B
TypeScript
16 lines
260 B
TypeScript
import { SendTextApi } from "../api/sendTextApi";
|
|
|
|
export class SendTextData {
|
|
text: string;
|
|
hidden: boolean;
|
|
|
|
constructor(data?: SendTextApi) {
|
|
if (data == null) {
|
|
return;
|
|
}
|
|
|
|
this.text = data.text;
|
|
this.hidden = data.hidden;
|
|
}
|
|
}
|