123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace LYFZ.CloudServerData.Model
- {
-
-
-
- public class ServerConfig : BaseConfig
- {
- public ServerConfig() {
-
- }
- int bakHH = 21;
-
-
-
- public int BakHH
- {
- get { return bakHH; }
- set { bakHH = value; }
- }
- int bakMM = 0;
-
-
-
- public int BakMM
- {
- get { return bakMM; }
- set { bakMM = value; }
- }
- bool enableAutoBackup = false;
-
-
-
- public bool EnableAutoBackup
- {
- get { return enableAutoBackup; }
- set { enableAutoBackup = value; }
- }
- string backupFilePath = "";
-
-
-
- public string BackupFilePath
- {
- get { return backupFilePath; }
- set { backupFilePath = value; }
- }
- private bool _NetworkTrafficStatistics = false;
-
-
-
- public bool NetworkTrafficStatistics
- {
- get { return _NetworkTrafficStatistics; }
- set { _NetworkTrafficStatistics = value; }
- }
- }
- }
|