using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace RFIDServicePlate { public class CommodityModel { public string CommodityName { get; set; } public decimal CommodityPrice { get; set; } public string CommodityCode { get; set; } } }