1234567891011121314151617181920 |
- using System.Text.Json.Serialization;
- namespace AipGateway.API.Domain.Models.Request
- {
- public class RequestStream : RequestBase
- {
- public string dispFileName { get; set; } = string.Empty;
- public string fileData { get; set; } = string.Empty;
- #if false
- [JsonIgnore]
- public string fileOwner { get; set; } = string.Empty;
- [JsonIgnore]
- public string fileExt { get; set; } = string.Empty;
- [JsonIgnore]
- public Int64 fileSize { get; set; }
- #endif
- }
- }
|