30 lines
991 B
C#
30 lines
991 B
C#
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; }
|
|
|
|
|
|
}
|
|
|
|
}
|