PAMapp/shared/models/appointment.model.ts
@@ -1,15 +1,16 @@ import { ContactStatus } from "./enum/contact-status"; export interface AppointmentLog { id : number; createdDate : string; lastModifiedDate: string; customerId : number; agentNo : string; status : 'UNFILLED' | 'FILLED'; score : number; agentName : string; agentNo : string; appointmentId : number; createdDate : string; customerId : number; customerName : string; id : number; lastModifiedDate: string; score : number; status : 'UNFILLED' | 'FILLED'; } export interface Appointment {