mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-07 13:48:00 -05:00
12 lines
287 B
C#
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; }
|
|
}
|