Files
FSI.BT.IR.Tools/FSI.BT.Tools/Settings/IApps.cs
Maier Stephan SI d01747f75a Sicherung
2023-01-02 04:33:49 +01:00

40 lines
1.4 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FSI.BT.Tools.Settings
{
public class Apps
{
public interface IApps
{
IEnumerable<Exe.IExe> SieSimaticManager { get; }
IEnumerable<Exe.IExe> SieTiaV13 { get; }
IEnumerable<Exe.IExe> SieTiaV14 { get; }
IEnumerable<Exe.IExe> SieTiaV15 { get; }
IEnumerable<Exe.IExe> SieTiaV16 { get; }
IEnumerable<Exe.IExe> SieTiaV17 { get; }
IEnumerable<Exe.IExe> SieTiaVStarter { get; }
IEnumerable<Exe.IExe> Epl { get; }
IEnumerable<Exe.IExe> Npp { get; }
IEnumerable<Exe.IExe> TotalCmd { get; }
IEnumerable<Exe.IExe> TeXstudio { get; }
IEnumerable<Exe.IExe> Vs { get; }
IEnumerable<Exe.IExe> VsCode { get; }
IEnumerable<Exe.IExe> Rdp { get; }
IEnumerable<Exe.IExe> Outlook { get; }
IEnumerable<Exe.IExe> Teams { get; }
IEnumerable<Exe.IExe> Excel { get; }
IEnumerable<Exe.IExe> Word { get; }
IEnumerable<Exe.IExe> PaintNet { get; }
IEnumerable<Exe.IExe> Gimp { get; }
IEnumerable<Exe.IExe> Vnc { get; }
IEnumerable<Exe.IExe> VncAdrBook { get; }
IEnumerable<Exe.IExe> IbaAnalyzer { get; }
}
}
}