ResultFile.cs 817 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. using System;
  2. using System.Collections.Generic;
  3. namespace OTSIncAReportApp.DataOperation.Model
  4. {
  5. [Serializable]
  6. public class ResultFile
  7. {
  8. /// <summary>
  9. /// FileId
  10. /// </summary>
  11. public string FileId
  12. {
  13. get;
  14. set;
  15. }
  16. /// <summary>
  17. /// FileName
  18. /// </summary>
  19. public string FileName
  20. {
  21. get;
  22. set;
  23. }
  24. /// <summary>
  25. /// FilePath
  26. /// </summary>
  27. public string FilePath
  28. {
  29. get;
  30. set;
  31. }
  32. /// <summary>
  33. /// ResuitInfo
  34. /// </summary>
  35. public Dictionary<string, object> ResultInfo
  36. {
  37. get;
  38. set;
  39. }
  40. }
  41. }