CPF/CPF.Mac/Mac/CoreLocation/CLAuthroziationChangedEventArgs.cs
2023-11-21 23:05:03 +08:00

14 lines
284 B
C#

using System;
namespace CPF.Mac.CoreLocation
{
[Obsolete("Use CLAuthorizationChangedEventArgs")]
public class CLAuthroziationChangedEventArgs : CLAuthorizationChangedEventArgs
{
public CLAuthroziationChangedEventArgs(CLAuthorizationStatus status)
: base(status)
{
}
}
}