- using System.Text.Json.Serialization;
- namespace Aip.Api.Service.Models.Response;
- public class ResponseStreams : ResponseBase
- {
- public string fileData { get; set; } = string.Empty;
- [JsonIgnore]
- public string outputFileName { get; set; } = string.Empty;
- }
|