Search This Blog

Sunday, 4 December 2016

PCL Interface

namespace Mig
{
   public interface IMyLocation
    {
        void ObtainMyLocation();
        event EventHandler<ILocationEventArgs> locationObtained;
    }

    public interface ILocationEventArgs
    {
        double lat { get; set; }
        double lng { get; set; }
    }
}

No comments:

Post a Comment