Created
November 25, 2019 11:05
-
-
Save icebeam7/0fc7f19e0e358455cea70f32e32c68cd to your computer and use it in GitHub Desktop.
DemoDS: IReverseGeocode.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using DemoDS.Models; | |
using System.Threading.Tasks; | |
namespace DemoDS.Interfaces | |
{ | |
public interface IReverseGeocode | |
{ | |
Task<LocationAddress> GetLocationAddress(double latitude, double longitude); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment