123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Text.Json.Serialization;
- using System.Threading.Tasks;
- namespace AipGateway.API.Domain.Models.Request
- {
- public class RequestStreamSet : RequestStream
- {
- public string aipGuid { get; set; } = string.Empty;
- public string comment { get; set; } = string.Empty;
- }
- }
|