mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-02 22:34:57 +00:00
12 lines
194 B
C#
12 lines
194 B
C#
using PepperDash.Core;
|
|
|
|
namespace PepperDash.Essentials.Touchpanel
|
|
{
|
|
public interface ITheme : IKeyed
|
|
{
|
|
string Theme { get; }
|
|
|
|
void UpdateTheme(string theme);
|
|
}
|
|
}
|