using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace MESClassLibrary.Model
{
    public class PunchValueRecordModel
    {
        public string ID { get; set; }

        public string DeviceNo { get; set; }

        public string Address { get; set; }

        public string ItemValue { get; set; }
    }
}