Files
FSI.BT.IR.Tools/FSI.BT.Tools/Settings/ICmd.cs
Maier Stephan SI 63512e77aa Sicherung
2023-01-16 16:03:54 +01:00

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