Skip to content

Instantly share code, notes, and snippets.

@icebeam7
Created November 25, 2019 11:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save icebeam7/0fc7f19e0e358455cea70f32e32c68cd to your computer and use it in GitHub Desktop.
Save icebeam7/0fc7f19e0e358455cea70f32e32c68cd to your computer and use it in GitHub Desktop.
DemoDS: IReverseGeocode.cs
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