7 lines
168 B
TypeScript
7 lines
168 B
TypeScript
|
|
export interface IDeviceProfileRawResponse {
|
||
|
|
androidId: string;
|
||
|
|
deviceName: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
export interface IDeviceProfileResponse extends IDeviceProfileRawResponse {}
|