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.

28 lines
995B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace GpsCardGatewayPosition.Model.Config
  7. {
  8. /// <summary>
  9. /// IOTConfig配置模板类
  10. /// </summary>
  11. public class IotConfig
  12. {
  13. public string Endpoint { get; set; } = default!;
  14. public string AccessKey { get; set; } = default!;
  15. public string AccessSecret { get; set; } = default!;
  16. public string IotInstanceId { get; set; } = default!;
  17. public string ConsumerGroupId { get; set; } = default!;
  18. public string RegionId { get; set; } = default!;
  19. public string ProductKey { get; set; } = default!;
  20. public string Uid { get; set; } = default!;
  21. public string ClientId { get; set; } = default!;
  22. public string Port { get; set; } = default!;
  23. public string ReconnectSeconds { get; set; } = default!;
  24. public string MaxDegreeOfParallelism { get; set; } = default!;
  25. }
  26. }