- Projects: Shared / Personal

This commit is contained in:
Paolo Arena
2019-04-25 00:30:13 +02:00
parent 08e2ece604
commit a7a4d224eb
17 changed files with 333 additions and 154 deletions

View File

@@ -62,18 +62,23 @@ export interface IGlobalState {
export interface IMenuList {
nametranslate: string
description: string
description?: string
idelem?: string
icon?: string
name?: string
level_parent?: number
level_child?: number
urlroute?: string
routes2?: IMenuList[]
}
export interface IListRoutes {
route: string
faIcon: string
materialIcon: string
faIcon?: string
materialIcon?: string
name: string
text?: string
routes2: []
level_parent: number
level_child: number
routes2?: IListRoutes[]
level_parent?: number
level_child?: number
}

View File

@@ -20,6 +20,7 @@ export interface IProject {
enableExpiring?: boolean
id_prev?: string
modified?: boolean
favourite?: number
pos?: number
order?: number
live_url?: string