CPF/CPF.Mac/Mac/CoreLocation/CLLocationUpdatedEventArgs.cs

26 lines
375 B
C#
Raw Normal View History

2023-11-21 23:05:03 +08:00
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;
}
}
}