using PepperDash.Core; namespace PepperDash.Essentials.Touchpanel { /// /// Defines the contract for ITheme /// public interface ITheme : IKeyed { string Theme { get; } void UpdateTheme(string theme); } }