using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.Editors { /// /// Represents the base interface for all configurations. /// public interface IConfiguration { /// /// Gets or sets the configurable type. /// Type ConfigurableType { get; set; } } }