using PepperDash.Core;
namespace PepperDash.Essentials.Touchpanel
{
///
/// Defines the contract for ITheme
///
public interface ITheme : IKeyed
{
///
/// Current theme
///
string Theme { get; }
///
/// Set the theme with the given value
///
/// The theme to set
void UpdateTheme(string theme);
}
}