aboutsummaryrefslogtreecommitdiff
path: root/src/Enmarcha.Backend/Services/Geocoding/IGeocodingService.cs
blob: 8619b0ac82e9cc7b2a3fb2b2b15f4a6805d50557 (plain)
1
2
3
4
5
6
7
8
9
using Enmarcha.Backend.Types.Planner;

namespace Enmarcha.Backend.Services.Geocoding;

public interface IGeocodingService
{
    Task<List<PlannerSearchResult>> GetAutocompleteAsync(string query);
    Task<PlannerSearchResult?> GetReverseGeocodeAsync(double lat, double lon);
}