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.
|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace GpsCardGatewayPosition.Model.Config
- {
- /// <summary>
- /// IOTConfig配置模板类
- /// </summary>
- public class IotConfig
- {
- public string Endpoint { get; set; } = default!;
- public string AccessKey { get; set; } = default!;
- public string AccessSecret { get; set; } = default!;
- public string IotInstanceId { get; set; } = default!;
- public string ConsumerGroupId { get; set; } = default!;
- public string RegionId { get; set; } = default!;
- public string ProductKey { get; set; } = default!;
- public string Uid { get; set; } = default!;
- public string ClientId { get; set; } = default!;
- public string Port { get; set; } = default!;
- public string ReconnectSeconds { get; set; } = default!;
- public string MaxDegreeOfParallelism { get; set; } = default!;
- }
- }
|