response_getScannerList.cs 583 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.IO;
  7. namespace HXX.Scanner.Biz.Socket
  8. {
  9. /// <summary>
  10. /// 返回所有扫描仪信息
  11. /// </summary>
  12. public class response_getScannerList : response_base
  13. {
  14. public response_getScannerList()
  15. {
  16. action = "getScannerList";
  17. msg = "请求成功!";
  18. }
  19. /// <summary>
  20. /// 扫描仪列表
  21. /// </summary>
  22. public List<Device_Scanner> data { get; set; }
  23. }
  24. }