RequestStreamSet.cs 395 B

123456789101112131415161718
  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 RequestStreamSet : RequestStream
  10. {
  11. public string aipGuid { get; set; } = string.Empty;
  12. public string comment { get; set; } = string.Empty;
  13. }
  14. }