RequestStreamAllSet.cs 462 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 RequestStreamAllSet : RequestStream
  10. {
  11. public string labelGuid { get; set; } = string.Empty;
  12. public string templateGuid { get; set; } = string.Empty;
  13. public string comment { get; set; } = string.Empty;
  14. }
  15. }