using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.FSE.Diagnostics.Project { public interface ISupportsComponentSelection { bool EnableComponentSelection { get; set; } } public interface ISupportsComponentSelection : ISupportsComponentSelection { [JsonIgnore] List> Components { get; } [JsonIgnore] T SelectedComponent { get; set; } } }