1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-31 08:29:36 +02:00
flame/client/src/interfaces/App.ts

20 lines
288 B
TypeScript
Raw Normal View History

2021-05-10 19:02:16 +02:00
export interface App {
id: number;
name: string;
url: string;
icon: string;
2021-05-12 17:31:25 +02:00
isPinned: boolean;
2021-05-10 19:02:16 +02:00
createdAt: Date;
updatedAt: Date;
}
2021-05-12 17:31:25 +02:00
export interface AppResponse<T> {
success: boolean;
2021-05-12 17:31:25 +02:00
data: T;
}
export interface NewApp {
name: string;
url: string;
icon: string;
2021-05-10 19:02:16 +02:00
}