Set app visibility

This commit is contained in:
Paweł Malak
2021-11-08 23:40:30 +01:00
parent ee9aefa4fa
commit d1738a0a3e
7 changed files with 127 additions and 105 deletions

View File

@@ -1,15 +1,13 @@
import { Model } from '.';
export interface App extends Model {
name: string;
url: string;
icon: string;
isPinned: boolean;
orderId: number;
}
export interface NewApp {
name: string;
url: string;
icon: string;
}
isPublic: boolean;
}
export interface App extends Model, NewApp {
orderId: number;
isPinned: boolean;
}