9 lines
169 B
C#
9 lines
169 B
C#
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace SharedLibraryCore.Interfaces;
|
|||
|
|
|||
|
public interface IGeoLocationService
|
|||
|
{
|
|||
|
Task<IGeoLocationResult> Locate(string address);
|
|||
|
}
|