import { SapAttachmentModel } from './sap-attachment.model'; export interface SapActivityModel { activityNumber: number; callId: number; activityId: string; activity: string; type: string; subject: string; remarks: string; startTime: string; startTimeSapTime: number; endTime: string; endTimeSapTime: number; duration: number; content: string; detailedSymptom: string; solution: string; orderNumber: string; incompleteReason: string; coordinator: string; coordinatorName: string; attachmentList: SapAttachmentModel[]; atcEntry: string; }