RequestFileSet.cs 390 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Text.Json.Serialization;
  6. using System.Threading.Tasks;
  7. namespace AipGateway.API.Domain.Models.Request
  8. {
  9. public class RequestFileSet : RequestFile
  10. {
  11. public string aipGuid { get; set; } = string.Empty;
  12. public string comment { get; set; } = string.Empty;
  13. }
  14. }