DrawerResult.cs 533 字节
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace OnlineStore.DeviceLibrary
{
    /// <summary>
    /// 抽屉调试结果
    /// </summary>
    public class DrawerResult
    {
        public string DrawerName { get; set; }
        public int ResultCode { get; set; } = -1;
        public List<PosDebugResult> PosResultList { get; set; }
        public DrawerResult()
        {
            PosResultList = new List<PosDebugResult>();
        }
    }
}