import { Attr } from 'ts-framework' import { ProviderResponseDTO } from './provider' import { MobilityResponseDTO } from './mobility' export class CreateProviderMobilityDTO { @Attr({ type: String }) providerId: string @Attr({ type: String }) mobilityId: string } export class UpdateProviderMobilityDTO { @Attr({ type: String }) id: string @Attr({ type: String }) providerId: string @Attr({ type: String }) mobilityId: string } export class RemoveProviderMobilityDTO { @Attr({ type: String }) providerId: string @Attr({ type: String }) mobilityId: string } export class ProviderMobilityResponseDTO { id: string providerId: string mobilityId: string }