Add previous and next container to ISetContainerListRequest

This commit is contained in:
Siklos 2022-09-08 13:13:37 +02:00
parent 8aae29d714
commit d512f87776
2 changed files with 23 additions and 0 deletions

View file

@ -9,6 +9,12 @@ export interface ISetContainerListRequest {
/** Selected container */
Container: IContainerModel
/** The previous sibling container */
PreviousContainer: IContainerModel | undefined
/** The next sibling container */
NextContainer: IContainerModel | undefined
/** Current application state */
ApplicationState: IHistoryState
}