Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- 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!;
- }
- }
|