- using System.ComponentModel.DataAnnotations;
- namespace Aip.Api.Service.Models.Request;
- public class RequestFile
- {
- [Required]
- public string dispFileName { get; set; } = string.Empty;
- [Required]
- public string realFileName { get; set; } = string.Empty;
- }
|