21 lines
384 B
C#
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; }
|
|
}
|
|
|
|
}
|
|
}
|