import { Attr } from 'ts-framework' export class CreateVehicleAccommodationDTO { @Attr({ type: String }) name: string } export class VehicleAccommodationResponseDTO { id: string name: string }