collabbot/CollabBot/VNC.cs

21 lines
672 B
C#
Raw Normal View History

2024-04-21 13:28:07 -04:00
namespace CollabBot;
public class VNC
{
2024-10-17 10:02:56 -04:00
public string? error { get; set; }
2024-04-21 13:28:07 -04:00
public int id { get; set; }
public string ip { get; set; }
public int port { get; set; }
public string? city { get; set; }
public string? state { get; set; }
2024-04-21 13:28:07 -04:00
public string country { get; set; }
public string asn { get; set; }
public string? clientname { get; set; }
public string? screenres { get; set; }
public string? hostname { get; set; }
public string? osname { get; set; }
public string? openports { get; set; }
public string? username { get; set; }
public string? password { get; set; }
public Int64 createdat { get; set; }
2024-04-21 13:28:07 -04:00
}