Files
T-DAS/Epost.Model/ShowMesModel.cs

23 lines
738 B
C#
Raw Normal View History

2023-01-13 15:30:20 +08:00
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; }
}
}