IW4M-Admin/SharedLibraryCore/Interfaces/IGeoLocationResult.cs

12 lines
287 B
C#
Raw Normal View History

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