PositionDebugResult.cs 479 字节
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace OnlineStore.DeviceLibrary
{
    public class PosDebugResult
    {
        /// <summary>
        /// 位置名称
        /// </summary>
        public string Name { get; set; }
        /// <summary>
        /// 调试结果:-1表示未运行过,0表示NG,1表示OK
        /// </summary>
        public int ResCode { get; set; } = -1;
    }
}