14 lines
380 B
C#
14 lines
380 B
C#
|
using SharedLibraryCore.Interfaces;
|
|||
|
|
|||
|
namespace IW4MAdmin.Application.Misc;
|
|||
|
|
|||
|
public class GeoLocationResult : IGeoLocationResult
|
|||
|
{
|
|||
|
public string Country { get; set; }
|
|||
|
public string CountryCode { get; set; }
|
|||
|
public string Region { get; set; }
|
|||
|
public string ASN { get; set; }
|
|||
|
public string Timezone { get; set; }
|
|||
|
public string Organization { get; set; }
|
|||
|
}
|