添加项目文件。
This commit is contained in:
22
Epost.Model/ShowMesModel.cs
Normal file
22
Epost.Model/ShowMesModel.cs
Normal file
@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Epost.Model
|
||||
{
|
||||
public class ShowMesModel
|
||||
{
|
||||
private string sku = string.Empty;
|
||||
private string qty = string.Empty;
|
||||
private string block = string.Empty;
|
||||
private string area = string.Empty;
|
||||
private string matchid = string.Empty;
|
||||
public string Sku { get => sku; set => sku = value; }
|
||||
public string Qty { get => qty; set => qty = value; }
|
||||
public string Block { get => block; set => block = value; }
|
||||
public string Area { get => area; set => area = value; }
|
||||
public string Matchid { get => matchid; set => matchid = value; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user