1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-19 03:29:37 +02:00
flame/client/src/interfaces/Api.ts
2021-05-19 18:26:57 +02:00

10 lines
No EOL
146 B
TypeScript

export interface Model {
id: number;
createdAt: Date;
updatedAt: Date;
}
export interface ApiResponse<T> {
success: boolean;
data: T;
}