v1.2
This commit is contained in:
20
FSI.BT.Tools/Global/Settings/ICmd.cs
Normal file
20
FSI.BT.Tools/Global/Settings/ICmd.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace FSI.BT.Tools.Global.Settings
|
||||
{
|
||||
public class Cmd
|
||||
{
|
||||
public interface ICmd
|
||||
{
|
||||
string Cmd { get; set; }
|
||||
|
||||
IEnumerable<Exe.IExe> Exe { get; }
|
||||
IEnumerable<String> Urls { get; }
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
18
FSI.BT.Tools/Global/Settings/IExe.cs
Normal file
18
FSI.BT.Tools/Global/Settings/IExe.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace FSI.BT.Tools.Global.Settings
|
||||
{
|
||||
public class Exe
|
||||
{
|
||||
public interface IExe
|
||||
{
|
||||
string ExePath { get; set; }
|
||||
string Path { get; set; }
|
||||
string Arguments { get; set; }
|
||||
}
|
||||
}
|
||||
}
|
||||
13
FSI.BT.Tools/Global/Settings/IFolder.cs
Normal file
13
FSI.BT.Tools/Global/Settings/IFolder.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace FSI.BT.Tools.Global.Settings
|
||||
{
|
||||
public class Folder
|
||||
{
|
||||
public interface IFolder : Lib.Guis.Folder.Mgt.IInterface { }
|
||||
}
|
||||
}
|
||||
37
FSI.BT.Tools/Global/Settings/IInterface.cs
Normal file
37
FSI.BT.Tools/Global/Settings/IInterface.cs
Normal file
@@ -0,0 +1,37 @@
|
||||
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; }
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
16
FSI.BT.Tools/Global/Settings/IStringValue.cs
Normal file
16
FSI.BT.Tools/Global/Settings/IStringValue.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
namespace FSI.BT.Tools.Global.Settings
|
||||
{
|
||||
public class StringValue
|
||||
{
|
||||
public interface IStringValue
|
||||
{
|
||||
string Value { get; set; }
|
||||
}
|
||||
|
||||
public interface IStringValueCrypt
|
||||
{
|
||||
string Value { get; set; }
|
||||
string ValueDeCrypt { get; set; }
|
||||
}
|
||||
}
|
||||
}
|
||||
13
FSI.BT.Tools/Global/Settings/RdpMgt.cs
Normal file
13
FSI.BT.Tools/Global/Settings/RdpMgt.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace FSI.BT.Tools.Global.Settings
|
||||
{
|
||||
public class RdpMgt
|
||||
{
|
||||
public interface IRdp : Lib.Guis.Rdp.Mgt.IInterface { }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user