Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

21 строка
519 B

  1. using JT808.Gateway.NBIotSimpleClient.Metadata;
  2. using System;
  3. using System.Collections.Concurrent;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace JT808.Gateway.NBIotSimpleClient.Services
  9. {
  10. public class DeviceInfoService
  11. {
  12. public ConcurrentDictionary<string,DeviceInfo> DeviceInfos { get; set; }
  13. public DeviceInfoService()
  14. {
  15. DeviceInfos = new ConcurrentDictionary<string, DeviceInfo>();
  16. }
  17. }
  18. }