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; } } } }