Sicherung

This commit is contained in:
maier_S
2022-03-24 15:52:02 +01:00
parent c9c8a7bcd0
commit bea46135fd
228 changed files with 75756 additions and 118 deletions

View File

@@ -1,10 +1,11 @@
using FSI.Lib.WinSettings;
using System.Collections.ObjectModel;
namespace FSI.BT.Tools
{
public class AppSettings : XmlSettings
{
public AppSettings(string fileName) : base(fileName)
{
TimeStampFormat = "_yyyyMMdd_HHmmss";
@@ -15,9 +16,9 @@ namespace FSI.BT.Tools
[EncryptedSetting]
public string[] Users { get; set; }
[EncryptedSetting]
public string[] Admins{ get; set; }
public string[] Admins { get; set; }
[EncryptedSetting]
public string SuperAdmin{ get; set; }
public string SuperAdmin { get; set; }
public string TimeStampFormat { get; set; }
public string[] SieSimaticManagerExe { get; set; }
public string[] SieTiaV13Exe { get; set; }
@@ -62,5 +63,16 @@ namespace FSI.BT.Tools
public string SieTiaWinCCMsgMgtWindowsName { get; set; }
public string SieTiaWinCCMsgMgtClassName { get; set; }
public string SieTiaWinCCMsgMgtBtnName { get; set; }
public bool IbaAutoSync { get; set; }
public string IbaRecordSourcePath { get; set; }
public string IbaRecordDestinationath { get; set; }
public string[] WindowMgtName { get; set; }
public string[] WindowMgtClassName { get; set; }
public int WindowMgtUpdateInterval { get; set; }
public bool WindowMgtAutostart { get; set; }
public int[] WindowMgtX { get; set; }
public int[] WindowMgtY { get; set; }
public int[] WindowMgtHeight { get; set; }
public int[] WindowMgtWight { get; set; }
}
}