10 lines
149 B
TypeScript
10 lines
149 B
TypeScript
export interface FcmTokenPayload {
|
|
id: string;
|
|
fcm_token: string;
|
|
}
|
|
|
|
export interface FcmTokenResponse {
|
|
status: boolean;
|
|
message: string;
|
|
}
|