ResponseStreams.cs 270 B

12345678910111213
  1. using System.Text.Json.Serialization;
  2. namespace Aip.Service.Models.Response;
  3. public class ResponseStreams : ResponseBase
  4. {
  5. public string fileData { get; set; } = string.Empty;
  6. [JsonIgnore]
  7. public string outputFileName { get; set; } = string.Empty;
  8. }