12 lines
322 B
C#
12 lines
322 B
C#
namespace EonaCat.ConnectionMonitor.Models
|
|
{
|
|
public class GeolocationInfo
|
|
{
|
|
public string CountryCode { get; set; }
|
|
public string CountryName { get; set; }
|
|
public string ISP { get; set; }
|
|
public double Longitude { get; set; }
|
|
public double Latitude { get; set; }
|
|
}
|
|
}
|