1
0
mirror of https://github.com/bitwarden/jslib synced 2025-12-24 04:04:38 +00:00
Files
jslib/src/models/request/deviceTokenRequest.ts
2018-01-20 14:12:18 -05:00

8 lines
117 B
TypeScript

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