123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- using System.Text.Json.Serialization;
- namespace Aip.Service.Models.Response;
- public class ResponseBase
- {
- //[JsonIgnore]
- public int errorCode { get; set; } = 0;
- //[JsonIgnore]
- public string errorMessage { get; set; } = string.Empty;
- public string dispFileName { get; set; } = string.Empty;
- public string realFileName { get; set; } = string.Empty;
- /// <summary>
- /// 요청 파일 정보
- /// </summary>
- [JsonIgnore]
- public string FileId { get; set; } = string.Empty;
- [JsonIgnore]
- public string FileName { get; set; } = string.Empty;
- [JsonIgnore]
- public string FileLabelGuid { get; set; } = string.Empty;
- [JsonIgnore]
- public string FileProtectionGuid { get; set; } = string.Empty;
- [JsonIgnore]
- public string FileOwner { get; set; } = string.Empty;
- [JsonIgnore]
- public string FileExt { get; set; } = string.Empty;
- [JsonIgnore]
- public long FileSize { get; set; }
- /// <summary>
- /// 결과 파일 정보
- /// </summary>
- ///
- [JsonIgnore]
- public string NewFileName { get; set; } = string.Empty;
- [JsonIgnore]
- public string NewFileLabelGuid { get; set; } = string.Empty;
- [JsonIgnore]
- public string NewFileProtectionGuid { get; set; } = string.Empty;
- [JsonIgnore]
- public string NewFileOwner { get; set; } = string.Empty;
- [JsonIgnore]
- public string NewFileExt { get; set; } = string.Empty;
- [JsonIgnore]
- public long NewFileSize { get; set; }
- }
|