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

namespace QM.Exchange.Interface
{
    /// <summary>
    /// 工作客户端信息
    /// </summary>
    public class Worker:WorkerBase
    {
        /// <summary>
        /// 设备控制类型 remote:远程,local:本地
        /// </summary>
        public string DeivceControlType { get; set; }
    }
}