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

13 lines
191 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;
createdAt: Date;
updatedAt: Date;
}
export interface AppResponse {
success: boolean;
data: App[]
2021-05-10 19:02:16 +02:00
}