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 { get; } IEnumerable Urls { get; } } } }