1234567891011121314151617 |
- 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 RequestFileAllSet : RequestFile
- {
- public string labelGuid { get; set; } = string.Empty;
- public string templateGuid { get; set; } = string.Empty;
- public string comment { get; set; } = string.Empty;
- }
- }
|