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

19 lines
361 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FSI.BT.Tools.Settings
{
public class Exe
{
public interface IExe
{
string ExePath { get; set; }
string Path { get; set; }
string Arguments { get; set; }
}
}
}