BusynessNotification

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

SettingJson.cs (480B)


      1 namespace BusynessNotification
      2 {
      3     class SettingJson
      4     {
      5         public bool CheckCPU { get; set; }
      6         public bool CheckMemory { get; set; }
      7         public bool CheckDisk { get; set; }
      8         public double SliderCPU { get; set; }
      9         public double SliderMemory { get; set; }
     10         public double SliderDisk { get; set; }
     11         public double SecCPU { get; set; }
     12         public double SecMemory { get; set; }
     13         public double SecDisk { get; set; }
     14     }
     15 }