PositionUpdatedEventArgs.cs 407 B

12345678910111213141516
  1. using Windows.Devices.Geolocation;
  2. namespace YJMPD_UWP.Helpers.EventArgs
  3. {
  4. public class PositionUpdatedEventArgs : System.EventArgs
  5. {
  6. public Geoposition Old { get; private set; }
  7. public Geoposition New { get; private set; }
  8. public PositionUpdatedEventArgs(Geoposition old, Geoposition notold)
  9. {
  10. Old = old;
  11. New = notold;
  12. }
  13. }
  14. }