22 lines
673 B
C#
22 lines
673 B
C#
namespace EonaCat.ConnectionMonitor.Models
|
|
{
|
|
public class CountryConnection
|
|
{
|
|
public string FromCountryCode { get; set; }
|
|
public string ToCountryCode { get; set; }
|
|
public string FromFlag { get; set; }
|
|
public string ToFlag { get; set; }
|
|
public int ConnectionCount { get; set; }
|
|
|
|
public double? FromLat { get; set; }
|
|
public double? FromLon { get; set; }
|
|
public double? ToLat { get; set; }
|
|
public double? ToLon { get; set; }
|
|
public string ToIp { get; set; }
|
|
public string FromIp { get; set; }
|
|
|
|
|
|
public List<string> Processes { get; set; } = new List<string>();
|
|
}
|
|
}
|