export interface RemoveResponse { removed: boolean } export class ArchiveResponseDTO { archived: boolean } export interface SortDTO { [key: string]: string } export interface ParamsDTO { [key: string]: string } export interface ItemsWithTotalResponseDTO { items: T total: number } export interface IMap { [key: string]: T }