using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FSI.BT.Tools.Global.Settings { public class Interface { public interface IInterface { string HotKey { get; set; } IEnumerable Users { get; } IEnumerable Admins { get; } string SuperAdmin { get; } StringValue.IStringValue Pw { get; set; } StringValue.IStringValue TimeStampFormat { get; set; } IEnumerable Cmds { get; } IEnumerable Folders { get; } IEnumerable Rdps { get; } //IEnumerable WebRadioUrls { get; } Lib.Guis.SieTiaWinCCMsgMgt.IInterface WinCC { get; set; } Lib.Guis.IbaDirSync.IInterface IbaDirSync { get; set; } } } }