Files
T-DAS/Epost.Model/MatchModel.cs
2023-01-13 15:30:20 +08:00

29 lines
1.1 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Epost.Model
{
public class MatchModel:Base
{
private string _Matchid = string.Empty;
private string _Channel = string.Empty;
private string _oprationstate = string.Empty;
private string _OrState = string.Empty;
private string _KeyName = string.Empty;
private string _Shopid = string.Empty;
private string _Orderid = string.Empty;
public string Matchid { get => _Matchid; set => _Matchid = value; }
public string Channel { get => _Channel; set => _Channel = value; }
public string Oprationstate { get => _oprationstate; set => _oprationstate = value; }
public string OrState { get => _OrState; set => _OrState = value; }
public string KeyName { get => _KeyName; set => _KeyName = value; }
public string Shopid { get => _Shopid; set => _Shopid = value; }
public string Orderid { get => _Orderid; set => _Orderid = value; }
}
}