ResponseStream.cs 419 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Text.Json.Serialization;
  6. using System.Threading.Tasks;
  7. namespace AipGateway.API.Domain.Models.Response
  8. {
  9. public class ResponseStream : ResponseBase
  10. {
  11. public string fileData { get; set; } = string.Empty;
  12. [JsonIgnore]
  13. public string outputFileName { get; set; } = string.Empty;
  14. }
  15. }