Ви не можете вибрати більше 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. }