IW4M-Admin/SharedLibraryCore/Interfaces/IGeoLocationResult.cs
2022-04-19 18:43:58 -05:00

12 lines
287 B
C#

namespace SharedLibraryCore.Interfaces;
public interface IGeoLocationResult
{
string Country { get; set; }
string CountryCode { get; set; }
string Region { get; set; }
string ASN { get; set; }
string Timezone { get; set; }
string Organization { get; set; }
}