Ви не можете вибрати більше 25 тем
Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
|
- 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!;
- }
- }
|