XmlModel.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace XmlDucumentAnalysis.model
  7. {
  8. public class XmlModel
  9. {
  10. public string recordingId { set; get; }
  11. public string recordingFileName { set; get; }
  12. public string dataPackage { set; get; }
  13. public string duration { set; get; }
  14. public string dateStartCall { set; get; }
  15. public string dateHangup { set; get; }
  16. public string callerNumber { set; get; }
  17. public string destinationNumber { set; get; }
  18. public string agentCti { set; get; }
  19. public string agentId { set; get; }
  20. public string sceneName { set; get; }
  21. public string callType { set; get; }
  22. public string customerId { set; get; }
  23. public string platformCode { set; get; }
  24. public string remark1 { set; get; }
  25. public string remark2 { set; get; }
  26. public string remark3 { set; get; }
  27. public string remark4 { set; get; }
  28. public string remark5 { set; get; }
  29. public string remark6 { set; get; }
  30. public string switch_call_id { set; get; }
  31. internal void XmlFileAnalysis(string xmlFilePath)
  32. {
  33. throw new NotImplementedException();
  34. }
  35. }
  36. }