RequestFileAllSet.cs 478 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Text.Json.Serialization;
  7. using System.Threading.Tasks;
  8. namespace AipGateway.API.Domain.Models.Request
  9. {
  10. public class RequestFileAllSet : RequestBaseSet
  11. {
  12. [Required]
  13. public string templateGuid { get; set; } = string.Empty;
  14. [Required]
  15. public required RequestFile file { get; set; }
  16. }
  17. }