mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-09 09:45:06 +00:00
22 lines
491 B
C#
22 lines
491 B
C#
using PepperDash.Core;
|
|
|
|
namespace PepperDash.Essentials.Touchpanel
|
|
{
|
|
/// <summary>
|
|
/// Defines the contract for ITheme
|
|
/// </summary>
|
|
public interface ITheme : IKeyed
|
|
{
|
|
/// <summary>
|
|
/// Current theme
|
|
/// </summary>
|
|
string Theme { get; }
|
|
|
|
/// <summary>
|
|
/// Set the theme with the given value
|
|
/// </summary>
|
|
/// <param name="theme">The theme to set</param>
|
|
void UpdateTheme(string theme);
|
|
}
|
|
}
|