ResponseBase.cs 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Text.Json.Serialization;
  6. using System.Threading.Tasks;
  7. namespace AipGateway.API.Domain.Models.Response
  8. {
  9. public class ResponseBase
  10. {
  11. //[JsonIgnore]
  12. public int errorCode { get; set; } = 0;
  13. //[JsonIgnore]
  14. public string errorMessage { get; set; } = string.Empty;
  15. public string dispFileName { get; set; } = string.Empty;
  16. public string realFileName { get; set; } = string.Empty;
  17. /// <summary>
  18. /// 요청 파일 정보
  19. /// </summary>
  20. [JsonIgnore]
  21. public string FileId { get; set; } = string.Empty;
  22. [JsonIgnore]
  23. public string FileName { get; set; } = string.Empty;
  24. [JsonIgnore]
  25. public string FileLabelGuid { get; set; } = string.Empty;
  26. [JsonIgnore]
  27. public string FileProtectionGuid { get; set; } = string.Empty;
  28. [JsonIgnore]
  29. public string FileOwner { get; set; } = string.Empty;
  30. [JsonIgnore]
  31. public string FileExt { get; set; } = string.Empty;
  32. [JsonIgnore]
  33. public Int64 FileSize { get; set; }
  34. /// <summary>
  35. /// 결과 파일 정보
  36. /// </summary>
  37. ///
  38. [JsonIgnore]
  39. public string NewFileName { get; set; } = string.Empty;
  40. [JsonIgnore]
  41. public string NewFileLabelGuid { get; set; } = string.Empty;
  42. [JsonIgnore]
  43. public string NewFileProtectionGuid { get; set; } = string.Empty;
  44. [JsonIgnore]
  45. public string NewFileOwner { get; set; } = string.Empty;
  46. [JsonIgnore]
  47. public string NewFileExt { get; set; } = string.Empty;
  48. [JsonIgnore]
  49. public Int64 NewFileSize { get; set; }
  50. }
  51. }