添加项目文件。
This commit is contained in:
65
Epost.Model/AddressCheckModel.cs
Normal file
65
Epost.Model/AddressCheckModel.cs
Normal file
@ -0,0 +1,65 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user