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

19 lines
368 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 Exe
{
public interface IExe
{
string ExePath { get; set; }
string Path { get; set; }
string Arguments { get; set; }
}
}
}