Files
FSI.BT.IR.Tools/FSI.BT.Tools/AppSettings.cs
Maier Stephan SI d01747f75a Sicherung
2023-01-02 04:33:49 +01:00

79 lines
3.3 KiB
C#

using FSI.Lib.WinSettings;
using System.Collections.ObjectModel;
namespace FSI.BT.Tools
{
public class AppSettings : XmlSettings
{
public AppSettings(string fileName) : base(fileName)
{
SuperAdmin = "maier_s";
}
[EncryptedSetting]
public string[] Users { get; set; }
[EncryptedSetting]
public string[] Admins { get; set; }
[EncryptedSetting]
public string SuperAdmin { get; set; }
//public string TimeStampFormat { get; set; }
//public string[] SieSimaticManagerExe { get; set; }
//public string[] SieTiaV13Exe { get; set; }
//public string[] SieTiaV14Exe { get; set; }
//public string[] SieTiaV15Exe { get; set; }
//public string[] SieTiaV16Exe { get; set; }
//public string[] SieTiaV17Exe { get; set; }
//public string[] SieTiaVStarterExe { get; set; }
public string[] EplExe { get; set; }
//public string EplArguments { get; set; }
//public string[] NppExe { get; set; }
//public string[] TotalCmdExe { get; set; }
//public string[] TeXstudioExe { get; set; }
//public string[] TeXstudioPath { get; set; }
//public string[] VsExe { get; set; }
//public string[] VsCodeExe { get; set; }
//public string[] RdpExe { get; set; }
//public string[] OutlookExe { get; set; }
//public string[] TeamsExe { get; set; }
//public string TeamsArg { get; set; }
//public string[] ExcelExe { get; set; }
//public string[] WordExe { get; set; }
//public string[] PaintNetExe { get; set; }
//public string[] GimpExe { get; set; }
//public string[] VncExe { get; set; }
//public string[] VncAdrBookExe { get; set; }
//public string[] IbaAnalyzerExe { get; set; }
//public string ZentralWebUrl { get; set; }
//public string SchichtbuchUrl { get; set; }
//public string SPSUrl { get; set; }
//public string Pl1PlsUrl { get; set; }
//public string Pl2PlsUrl { get; set; }
//public string Pl2Als { get; set; }
//public string Pl3PlsUrl { get; set; }
//public string GiteaUrl { get; set; }
//public string WikiUrl { get; set; }
//public string ErpUrl { get; set; }
//public string EplPdfPath { get; set; }
//public string EplPrjPath { get; set; }
public bool SieTiaWinCCMsgMgtAutostart { get; set; }
public int SieTiaWinCCMsgMgtUpdateIntervall { get; set; }
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 int WindowMgtUpdateInterval { get; set; }
public bool WindowMgtAutostart { get; set; }
public string[] WindowMgtBezeichnung { get; set; }
public string[] WindowMgtName { get; set; }
public string[] WindowMgtClassName { get; set; }
public string[] WindowMgtX { get; set; }
public string[] WindowMgtY { get; set; }
public string[] WindowMgtHeight { get; set; }
public string[] WindowMgtWight { get; set; }
}
}