添加项目文件。

This commit is contained in:
jl
2023-01-13 15:30:20 +08:00
parent 40ed216831
commit bf208bde56
834 changed files with 470902 additions and 0 deletions

110
Epost.Model/ResultsModel.cs Normal file
View 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;
}
}
}
}