1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Text.Json.Serialization;
- using System.Threading.Tasks;
- namespace AipGateway.API.Domain.Models.Response
- {
- public class ResponseStream : ResponseBase
- {
- public string fileData { get; set; } = string.Empty;
- [JsonIgnore]
- public string outputFileName { get; set; } = string.Empty;
- }
- }
|