12345678910111213141516171819 |
-
- using Newtonsoft.Json;
- namespace Aip.Api.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; }
- }
|