Sicherung

This commit is contained in:
Maier Stephan SI
2023-04-17 07:07:49 +02:00
parent f3f89b94f5
commit 1c68b8f401
1307 changed files with 7918 additions and 82491 deletions

View File

@@ -0,0 +1,29 @@
using NLog;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FSI.BT.Tools.Global
{
internal static class Vars
{
public static Logger Log = LogManager.GetCurrentClassLogger();
public static Global.Settings.Interface.IInterface GlobalSettings { get; set; }
public static RadialMenu.Settings.Interface.IInterface RadialMenuSettings { get; set; }
public static SystemTrayMenu.Settings.Interface.IInterface SystemTrayMenuSettings { get; set; }
public static TimeStampToClipboard.Settings.Interface.IInterface TimeStampSettings { get; set; }
public static bool UserRights { get; set; }
public static bool AdminRights { get; set; }
public static bool SuperAdminRights { get; set; }
public static Lib.Guis.IbaDirSync.ViewModel Iba { get; set; }
public static Lib.Guis.SieTiaWinCCMsgMgt.ViewModel WinCC { get; set; }
}
}