Changed api call body's container model to available container + Fix API nullable values

This commit is contained in:
Eric NGUYEN 2022-08-31 16:15:38 +02:00
parent 4588aa9443
commit 8034652bdb
5 changed files with 12 additions and 14 deletions

View file

@ -1,6 +1,6 @@
/* eslint-disable @typescript-eslint/naming-convention */
import { IContainerModel } from './IContainerModel';
import { IAvailableContainer } from './IAvailableContainer';
export interface ISetContainerListResponse {
Containers: IContainerModel[]
Containers: IAvailableContainer[]
}