ResponseInfo.cs 779 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Text.Json.Serialization;
  6. using System.Threading.Tasks;
  7. namespace AipGateway.API.Domain.Models.Response
  8. {
  9. public class ResponseInfo : ResponseBase
  10. {
  11. public bool isLabled { get; set; }
  12. public bool isProtected { get; set; }
  13. public DateTime creationTime { get; set; }
  14. public string owner { get; set; } = string.Empty;
  15. public string contentId { get; set; } = string.Empty;
  16. public string labelId { get; set; } = string.Empty;
  17. public string labelName { get; set; } = string.Empty;
  18. public string templateId { get; set; } = string.Empty;
  19. public string templateName { get; set; } = string.Empty;
  20. }
  21. }