1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Text.Json.Serialization;
- using System.Threading.Tasks;
- namespace AipGateway.API.Domain.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 Int64 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 Int64 NewFileSize { get; set; }
- }
- }
|