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

15 lines
235 B
TypeScript
Raw Normal View History

import { Model } from '.';
2021-05-19 18:26:57 +02:00
2021-11-08 23:40:30 +01:00
export interface NewApp {
2021-05-10 19:02:16 +02:00
name: string;
url: string;
icon: string;
2021-11-08 23:40:30 +01:00
isPublic: boolean;
description: string;
2021-05-12 17:31:25 +02:00
}
2021-11-08 23:40:30 +01:00
export interface App extends Model, NewApp {
orderId: number;
isPinned: boolean;
}