mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-09-18 09:44:52 +08:00
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;
|
|
}
|
|
}
|
|
}
|