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);
}