- using System.ComponentModel.DataAnnotations;
- using System.Text.Json.Serialization;
- namespace AipGateway.API.Domain.Models.Request
- {
- public class RequestBaseSet : RequestBase
- {
- [Required]
- public string aipGuid { get; set; } = string.Empty;
- public string comment { get; set; } = string.Empty;
- }
- }
|