15 lines
317 B
C#
15 lines
317 B
C#
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; }
|
|
}
|
|
}
|