ResponseStream.cs 268 B

123456789101112
  1. using System.Text.Json.Serialization;
  2. namespace Aip.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. }