123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Text.Json.Serialization;
- using System.Threading.Tasks;
- namespace AipGateway.API.Domain.Models.Response
- {
- public class ResponseInfo : ResponseBase
- {
- public bool isLabled { get; set; }
- public bool isProtected { get; set; }
- public DateTime creationTime { get; set; }
- public string owner { get; set; } = string.Empty;
- public string contentId { get; set; } = string.Empty;
- public string labelId { get; set; } = string.Empty;
- public string labelName { get; set; } = string.Empty;
- public string templateId { get; set; } = string.Empty;
- public string templateName { get; set; } = string.Empty;
- }
- }
|