mirror of
https://github.com/bitwarden/jslib
synced 2025-12-24 04:04:38 +00:00
8 lines
117 B
TypeScript
8 lines
117 B
TypeScript
export class DeviceTokenRequest {
|
|
pushToken: string;
|
|
|
|
constructor() {
|
|
this.pushToken = null;
|
|
}
|
|
}
|