|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- 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; }
-
-
-
- public bool EnableIotService { get; set; }
-
-
-
- public bool EnableServiceGuard { get; set; }
-
-
-
- public bool EnablePushWx { get; set; }
-
-
-
- public bool EnablePushThird { get; set; }
-
-
-
-
- public bool EnablePushPosition { get; set; }
-
- public bool EnablePushHealthy { get; set; }
-
-
-
- public bool EnablePushFast { get; set; }
-
-
-
- public bool EnablePushFence { get; set; }
-
-
-
- public bool EnableLocationMonitor { get; set; }
-
-
-
- public bool EnablePushIotPosition { get; set; }
- }
- }
|