export class CatalogItemDto {
id?: number;
name: string;
length: number;
speed: number;
minCost: number;
hasQuickRent: boolean;
pictureUrl: string;
}