Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

21 lignes
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. }