mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-15 14:04:34 +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;
|
||
|
}
|
||
|
}
|
||
|
}
|