import { Attr } from 'ts-framework' import { TripDomainResponseDTO } from './trip' export class CreateTripOperatorDTO { @Attr({ type: String }) operatorId: string @Attr({ type: String }) firstName: string @Attr({ type: String }) lastName: string @Attr({ type: String, optional: true }) phone?: string } export class TripOperatorResponseDTO { @Attr({ type: String }) id: string @Attr({ type: String }) firstName: string @Attr({ type: String }) lastName: string @Attr({ type: String }) operatorId: string @Attr({ type: TripDomainResponseDTO }) trip: TripDomainResponseDTO }