1 2 3 4 5 6 7 8 9
using Enmarcha.Backend.Types.Planner; namespace Enmarcha.Backend.Services; public interface IGeocodingService { Task<List<PlannerSearchResult>> GetAutocompleteAsync(string query); Task<PlannerSearchResult?> GetReverseGeocodeAsync(double lat, double lon); }