| 123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.IO;
- namespace HXX.Scanner.Biz.Socket
- {
- /// <summary>
- /// 返回所有扫描仪信息
- /// </summary>
- public class response_getScannerList : response_base
- {
- public response_getScannerList()
- {
- action = "getScannerList";
- msg = "请求成功!";
- }
- /// <summary>
- /// 扫描仪列表
- /// </summary>
- public List<Device_Scanner> data { get; set; }
- }
- }
|