CPF/CPF.Mac/Mac/Foundation/NSNetServiceErrorEventArgs.cs

19 lines
246 B
C#
Raw Normal View History

2023-11-21 23:05:03 +08:00
using System;
namespace CPF.Mac.Foundation
{
public class NSNetServiceErrorEventArgs : EventArgs
{
public NSDictionary Errors
{
get;
set;
}
public NSNetServiceErrorEventArgs(NSDictionary errors)
{
Errors = errors;
}
}
}