IW4M-Admin/SharedLibraryCore/Interfaces/IGeoLocationService.cs

9 lines
169 B
C#
Raw Normal View History

2022-04-19 19:43:58 -04:00
using System.Threading.Tasks;
namespace SharedLibraryCore.Interfaces;
public interface IGeoLocationService
{
Task<IGeoLocationResult> Locate(string address);
}