mirror of
https://github.com/bitwarden/clients.git
synced 2026-06-19 21:02:50 +08:00
8 lines
107 B
TypeScript
8 lines
107 B
TypeScript
export class DeviceTokenRequest {
|
|
pushToken: string;
|
|
|
|
constructor() {
|
|
this.pushToken = null;
|
|
}
|
|
}
|