mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-09-19 01:58:20 +08:00
19 lines
220 B
C#
19 lines
220 B
C#
![]() |
using System;
|
||
|
|
||
|
namespace CPF.Mac.Foundation
|
||
|
{
|
||
|
public class NSErrorEventArgs : EventArgs
|
||
|
{
|
||
|
public NSError Error
|
||
|
{
|
||
|
get;
|
||
|
private set;
|
||
|
}
|
||
|
|
||
|
public NSErrorEventArgs(NSError error)
|
||
|
{
|
||
|
Error = error;
|
||
|
}
|
||
|
}
|
||
|
}
|