mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-05 17:37:51 +08:00
26 lines
317 B
C#
26 lines
317 B
C#
using System;
|
|
|
|
namespace CPF.Mac.Foundation
|
|
{
|
|
public class NSNetDomainEventArgs : EventArgs
|
|
{
|
|
public string Domain
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public bool MoreComing
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public NSNetDomainEventArgs(string domain, bool moreComing)
|
|
{
|
|
Domain = domain;
|
|
MoreComing = moreComing;
|
|
}
|
|
}
|
|
}
|