ResponseInfo.cs 566 B

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