using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GpsCardGatewayPosition.Model.Config { /// /// 服务接入配置 /// public class ServiceAccessConfig { /// /// 服务接入总开关 /// public bool Enable { get; set; } /// /// IOT服务调用 /// public bool EnableIotService { get; set; } /// /// 守护服务 /// public bool EnableServiceGuard { get; set; } /// /// 微信推送 /// public bool EnablePushWx { get; set; } /// /// 第三方推送 /// public bool EnablePushThird { get; set; } public bool EnablePushHealthy { get; set; } /// /// 快速通道 /// public bool EnablePushFast { get; set; } /// /// 围栏服务推送 /// public bool EnablePushFence { get; set; } /// /// 非法区域定位检测 /// public bool EnableLocationMonitor { get; set; } /// /// 推送Iot定位信息 /// public bool EnablePushIotPosition { get; set; } } }