Files
flame/client/src/interfaces/App.ts
2021-12-07 16:48:24 +01:00

15 lines
235 B
TypeScript

import { Model } from '.';
export interface NewApp {
name: string;
url: string;
icon: string;
isPublic: boolean;
description: string;
}
export interface App extends Model, NewApp {
orderId: number;
isPinned: boolean;
}