Files
FSI.BT.IR.Tools/FSI.BT.Tools/Global/Settings/IInterface.cs
Stephan Maier 647f938eee v1.2
2024-08-27 08:10:27 +02:00

38 lines
978 B
C#

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<StringValue.IStringValue> Users { get; }
IEnumerable<StringValue.IStringValue> Admins { get; }
string SuperAdmin { get; }
StringValue.IStringValue Pw { get; set; }
StringValue.IStringValue TimeStampFormat { get; set; }
IEnumerable<Cmd.ICmd> Cmds { get; }
IEnumerable<Folder.IFolder> Folders { get; }
IEnumerable<RdpMgt.IRdp> Rdps { get; }
//IEnumerable<Lib.Guis.WebRadio.IInterface> WebRadioUrls { get; }
Lib.Guis.SieTiaWinCCMsgMgt.IInterface WinCC { get; set; }
Lib.Guis.IbaDirSync.IInterface IbaDirSync { get; set; }
}
}
}