ResponseStream.cs 271 B

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