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

15 lines
229 B
TypeScript
Raw Normal View History

import { Model } from '.';
2021-05-19 18:26:57 +02:00
export interface App extends Model {
2021-05-10 19:02:16 +02:00
name: string;
url: string;
icon: string;
2021-05-12 17:31:25 +02:00
isPinned: boolean;
2021-06-17 10:56:27 +02:00
orderId: number;
2021-05-12 17:31:25 +02:00
}
export interface NewApp {
name: string;
url: string;
icon: string;
2021-05-10 19:02:16 +02:00
}