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;
|
||
|
}
|
||
|
}
|
||
|
}
|