RequestBaseSet.cs 265 B

12345678910
  1. using System.ComponentModel.DataAnnotations;
  2. namespace Aip.Api.Service.Models.Request;
  3. public class RequestBaseSet : RequestBase
  4. {
  5. [Required]
  6. public string aipGuid { get; set; } = string.Empty;
  7. public string comment { get; set; } = string.Empty;
  8. }