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; } } }