mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-20 03:59:36 +02:00
10 lines
146 B
TypeScript
10 lines
146 B
TypeScript
|
export interface Model {
|
||
|
id: number;
|
||
|
createdAt: Date;
|
||
|
updatedAt: Date;
|
||
|
}
|
||
|
|
||
|
export interface ApiResponse<T> {
|
||
|
success: boolean;
|
||
|
data: T;
|
||
|
}
|