ResponseInfo.cs 568 B

12345678910111213141516
  1. namespace Aip.Api.Service.Models.Response;
  2. public class ResponseInfo : ResponseBase
  3. {
  4. public bool isLabled { get; set; }
  5. public bool isProtected { get; set; }
  6. public DateTime creationTime { get; set; }
  7. public string owner { get; set; } = string.Empty;
  8. public string contentId { get; set; } = string.Empty;
  9. public string labelId { get; set; } = string.Empty;
  10. public string labelName { get; set; } = string.Empty;
  11. public string templateId { get; set; } = string.Empty;
  12. public string templateName { get; set; } = string.Empty;
  13. }