mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-30 20:57:46 +08:00
14 lines
284 B
C#
14 lines
284 B
C#
using System;
|
|
|
|
namespace CPF.Mac.CoreLocation
|
|
{
|
|
[Obsolete("Use CLAuthorizationChangedEventArgs")]
|
|
public class CLAuthroziationChangedEventArgs : CLAuthorizationChangedEventArgs
|
|
{
|
|
public CLAuthroziationChangedEventArgs(CLAuthorizationStatus status)
|
|
: base(status)
|
|
{
|
|
}
|
|
}
|
|
}
|