mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-05 17:37:51 +08:00
20 lines
234 B
C#
20 lines
234 B
C#
using CPF.Mac.Foundation;
|
|
using System;
|
|
|
|
namespace CPF.Mac.AppKit
|
|
{
|
|
public class NSErrorEventArgs : EventArgs
|
|
{
|
|
public NSError Error
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public NSErrorEventArgs(NSError error)
|
|
{
|
|
Error = error;
|
|
}
|
|
}
|
|
}
|