RequestFile.cs 271 B

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