| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace XmlDucumentAnalysis.model
- {
- public class XmlModel
- {
- public string recordingId { set; get; }
- public string recordingFileName { set; get; }
- public string dataPackage { set; get; }
- public string duration { set; get; }
- public string dateStartCall { set; get; }
- public string dateHangup { set; get; }
- public string callerNumber { set; get; }
- public string destinationNumber { set; get; }
- public string agentCti { set; get; }
- public string agentId { set; get; }
- public string sceneName { set; get; }
- public string callType { set; get; }
- public string customerId { set; get; }
- public string platformCode { set; get; }
- public string remark1 { set; get; }
- public string remark2 { set; get; }
- public string remark3 { set; get; }
- public string remark4 { set; get; }
- public string remark5 { set; get; }
- public string remark6 { set; get; }
- public string switch_call_id { set; get; }
- internal void XmlFileAnalysis(string xmlFilePath)
- {
- throw new NotImplementedException();
- }
- }
- }
|