Files
FSI.BT.IR.Tools/FSI.BT.Tools/Global/Settings/IExe.cs
Maier Stephan SI 1c68b8f401 Sicherung
2023-04-17 07:07:49 +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; }
}
}
}