添加项目文件。
This commit is contained in:
40
Epost.Model/ResultModel.cs
Normal file
40
Epost.Model/ResultModel.cs
Normal file
@ -0,0 +1,40 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Epost.Model
|
||||
{
|
||||
public class ResultModel
|
||||
{
|
||||
private string _result = string.Empty;
|
||||
private string _msg = string.Empty;
|
||||
|
||||
public string result
|
||||
{
|
||||
get
|
||||
{
|
||||
return _result;
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
_result = value;
|
||||
}
|
||||
}
|
||||
|
||||
public string msg
|
||||
{
|
||||
get
|
||||
{
|
||||
return _msg;
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
_msg = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user