using Newtonsoft.Json; namespace Aip.Service.Models.Response; public class GeneralResponse : ResponseBase { [JsonIgnore] public new string dispFileName { get; set; } = string.Empty; [JsonIgnore] public new string realFileName { get; set; } = string.Empty; public int effectCount { get; set; } public object? result { get; set; } }