Files
T-DAS/Epost.Model/ResultModel.cs
2024-11-08 11:54:40 +08:00

47 lines
830 B
C#

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;
}
}
}
public class BatchModel {
string _batchno = string.Empty;
public string batchno { get => _batchno; set => _batchno = value; }
}
}