avicenna/service/packages/shared-dtos/dist/tickets/ticket-list.dto.d.ts

13 lines
267 B
TypeScript

export interface TicketListItemDto {
id: string;
ordinanceType: string;
patientName: string;
stage: string;
tourCount: number;
errorCount: number;
approvalStatus: string;
isOverdue: boolean;
createdAt: Date;
updatedAt: Date;
}