ToolParseDataDTO.cs 985 B

12345678910111213141516171819202122
  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 string itemName { get; set; } = string.Empty;
  17. public int elapsedTime { get; set; } = 0;
  18. public DateTime create_time { get; set; } = DateTime.Now;
  19. public string end_point { get; set; } = string.Empty;
  20. }
  21. }