1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-21 18:53:29 +00:00
Files
browser/libs/common/src/models/request/device-token.request.ts

8 lines
107 B
TypeScript

export class DeviceTokenRequest {
pushToken: string;
constructor() {
this.pushToken = null;
}
}