You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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