/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */

import type { FromDto } from './FromDto';
import type { ToDto } from './ToDto';

export type CopyTicketDto = {
    from: FromDto;
    to: ToDto;
};

