mirror of
https://github.com/pawelmalak/flame.git
synced 2026-03-11 22:54:46 +08:00
Set app visibility
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user