import { Attr } from 'ts-framework' export class CreateTripRejectionDTO { @Attr({ type: Date }) createdAt: Date @Attr({ type: String }) operatorId: string @Attr({ type: String }) tripId: string } export interface TripRejectionResponseDTO { id: string createdAt: Date operatorId: string tripId: string }