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

21 lines
391 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 Cmd
{
public interface ICmd
{
string Cmd { get; set; }
IEnumerable<Exe.IExe> Exe { get; }
IEnumerable<String> Urls { get; }
}
}
}