26 lines
375 B
C#
26 lines
375 B
C#
![]() |
using System;
|
||
|
|
||
|
namespace CPF.Mac.CoreLocation
|
||
|
{
|
||
|
public class CLLocationUpdatedEventArgs : EventArgs
|
||
|
{
|
||
|
public CLLocation NewLocation
|
||
|
{
|
||
|
get;
|
||
|
set;
|
||
|
}
|
||
|
|
||
|
public CLLocation OldLocation
|
||
|
{
|
||
|
get;
|
||
|
set;
|
||
|
}
|
||
|
|
||
|
public CLLocationUpdatedEventArgs(CLLocation newLocation, CLLocation oldLocation)
|
||
|
{
|
||
|
NewLocation = newLocation;
|
||
|
OldLocation = oldLocation;
|
||
|
}
|
||
|
}
|
||
|
}
|