IW4M-Admin/Application/Misc/GeoLocationResult.cs

14 lines
380 B
C#
Raw Normal View History

2022-04-19 19:43:58 -04:00
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; }
}