Sicherung

This commit is contained in:
Maier Stephan SI
2023-01-16 16:03:54 +01:00
parent 43297bb259
commit 63512e77aa
22 changed files with 1293 additions and 1218 deletions

View File

@@ -0,0 +1,20 @@
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; }
}
}
}