RequestStreamDel.cs 332 B

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