mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-08 06:08:20 -05:00
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; }
|
|
}
|