mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-07-10 07:07:21 +00:00
6 lines
86 B
TypeScript
6 lines
86 B
TypeScript
export interface Response<T> {
|
|
statusCode: number;
|
|
message: string;
|
|
data?: T;
|
|
}
|