RequestStream.cs 268 B

123456789101112
  1. using System.ComponentModel.DataAnnotations;
  2. namespace Aip.Service.Models.Request;
  3. public class RequestStream
  4. {
  5. [Required]
  6. public string dispFileName { get; set; } = string.Empty;
  7. [Required]
  8. public string fileData { get; set; } = string.Empty;
  9. }