ToolParseDataDTO.cs 840 B

1234567891011121314151617181920
  1. namespace molilian.core
  2. {
  3. public class ToolParseDataDTO
  4. {
  5. public TkChannelEnum channel { get; set; }
  6. public bool success { get; set; } = true;
  7. public string message { get; set; } = string.Empty;
  8. public string reason { get; set; } = string.Empty;
  9. public string content { get; set; } = string.Empty;
  10. public string rawContent { get; set; } = string.Empty;
  11. public string taoToken { get; set; } = string.Empty;
  12. public string ip { get; set; } = string.Empty;
  13. public string oaid { get; set; } = string.Empty;
  14. public string shortLinkurl { get; set; } = string.Empty;
  15. public string deeplink_url { get; set; } = string.Empty;
  16. public int elapsedTime { get; set; } = 0;
  17. public DateTime create_time { get; set; } = DateTime.Now;
  18. }
  19. }