RequestStreamAllSet.cs 484 B

1234567891011121314151617181920
  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 RequestStreamAllSet : RequestBaseSet
  11. {
  12. [Required]
  13. public string templateGuid { get; set; } = string.Empty;
  14. [Required]
  15. public required RequestStream stream { get; set; }
  16. }
  17. }