using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GpsCardGatewayPosition.Model.Config { /// /// IOTConfig配置模板类 /// 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!; } }