RequestStream.cs 524 B

1234567891011121314151617181920
  1. using System.Text.Json.Serialization;
  2. namespace AipGateway.API.Domain.Models.Request
  3. {
  4. public class RequestStream : RequestBase
  5. {
  6. public string dispFileName { get; set; } = string.Empty;
  7. public string fileData { get; set; } = string.Empty;
  8. #if false
  9. [JsonIgnore]
  10. public string fileOwner { get; set; } = string.Empty;
  11. [JsonIgnore]
  12. public string fileExt { get; set; } = string.Empty;
  13. [JsonIgnore]
  14. public Int64 fileSize { get; set; }
  15. #endif
  16. }
  17. }