| 1234567891011121314151617181920 |
- namespace molilian.core
- {
- public class ToolParseDataDTO
- {
- public TkChannelEnum channel { get; set; }
- public bool success { get; set; } = true;
- public string message { get; set; } = string.Empty;
- public string reason { get; set; } = string.Empty;
- public string content { get; set; } = string.Empty;
- public string rawContent { get; set; } = string.Empty;
- public string taoToken { get; set; } = string.Empty;
- public string ip { get; set; } = string.Empty;
- public string oaid { get; set; } = string.Empty;
- public string shortLinkurl { get; set; } = string.Empty;
- public string deeplink_url { get; set; } = string.Empty;
- public int elapsedTime { get; set; } = 0;
- public DateTime create_time { get; set; } = DateTime.Now;
- }
- }
|