1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-08 14:18:20 -05:00
IW4M-Admin/SharedLibraryCore/Interfaces/IGeoLocationService.cs
2022-04-19 18:43:58 -05:00

9 lines
169 B
C#

using System.Threading.Tasks;
namespace SharedLibraryCore.Interfaces;
public interface IGeoLocationService
{
Task<IGeoLocationResult> Locate(string address);
}