mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-29 04:15:00 +00:00
15 lines
271 B
C#
15 lines
271 B
C#
using PepperDash.Core;
|
|
|
|
namespace PepperDash.Essentials.Touchpanel
|
|
{
|
|
/// <summary>
|
|
/// Defines the contract for ITheme
|
|
/// </summary>
|
|
public interface ITheme : IKeyed
|
|
{
|
|
string Theme { get; }
|
|
|
|
void UpdateTheme(string theme);
|
|
}
|
|
}
|