66 lines
1.2 KiB
C#
66 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Epost.Model
|
|
{
|
|
public class AddressCheckModel
|
|
{
|
|
private string _Result = string.Empty;
|
|
|
|
|
|
public List<Detail> detail
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public string Result
|
|
{
|
|
get
|
|
{
|
|
return _Result;
|
|
}
|
|
|
|
set
|
|
{
|
|
_Result = value;
|
|
}
|
|
}
|
|
|
|
public class Detail
|
|
{
|
|
private string _address = string.Empty;
|
|
private string _ControlIP = string.Empty;
|
|
|
|
public string Address
|
|
{
|
|
get
|
|
{
|
|
return _address;
|
|
}
|
|
|
|
set
|
|
{
|
|
_address = value;
|
|
}
|
|
}
|
|
|
|
public string ControlIP
|
|
{
|
|
get
|
|
{
|
|
return _ControlIP;
|
|
}
|
|
|
|
set
|
|
{
|
|
_ControlIP = value;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|