添加项目文件。
This commit is contained in:
110
Epost.Model/ResultsModel.cs
Normal file
110
Epost.Model/ResultsModel.cs
Normal file
@ -0,0 +1,110 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Epost.Model
|
||||
{
|
||||
public class ResultsModel:DataPagerModel
|
||||
{
|
||||
private string _ResultID = string.Empty;
|
||||
private string _IP = string.Empty;
|
||||
private string _Port = string.Empty;
|
||||
private string _Address = string.Empty;
|
||||
private string _Parameter = string.Empty;
|
||||
private string _Command = string.Empty;
|
||||
private string _Status = string.Empty;
|
||||
|
||||
public string IP
|
||||
{
|
||||
get
|
||||
{
|
||||
return _IP;
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
_IP = value;
|
||||
}
|
||||
}
|
||||
|
||||
public string Port
|
||||
{
|
||||
get
|
||||
{
|
||||
return _Port;
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
_Port = value;
|
||||
}
|
||||
}
|
||||
|
||||
public string Address
|
||||
{
|
||||
get
|
||||
{
|
||||
return _Address;
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
_Address = value;
|
||||
}
|
||||
}
|
||||
|
||||
public string Parameter
|
||||
{
|
||||
get
|
||||
{
|
||||
return _Parameter;
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
_Parameter = value;
|
||||
}
|
||||
}
|
||||
|
||||
public string Command
|
||||
{
|
||||
get
|
||||
{
|
||||
return _Command;
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
_Command = value;
|
||||
}
|
||||
}
|
||||
|
||||
public string ResultID
|
||||
{
|
||||
get
|
||||
{
|
||||
return _ResultID;
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
_ResultID = value;
|
||||
}
|
||||
}
|
||||
|
||||
public string Status
|
||||
{
|
||||
get
|
||||
{
|
||||
return _Status;
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
_Status = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user