export interface TrayModel {
    [trayItem: string]: TrayItemModel
}

export interface TrayItemModel {
    open: boolean,
}