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

import type { LogsCommentDto } from './LogsCommentDto';

export type LogsTicketDto = {
    key: string;
    title: string;
    status: string;
    comments: Array<LogsCommentDto>;
};

