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

19 lines
246 B
C#

using System;
namespace CPF.Mac.Foundation
{
public class NSNetServiceErrorEventArgs : EventArgs
{
public NSDictionary Errors
{
get;
set;
}
public NSNetServiceErrorEventArgs(NSDictionary errors)
{
Errors = errors;
}
}
}