Files
Essentials/src/PepperDash.Essentials.MobileControl/Touchpanel/ITheme.cs
2025-03-25 22:14:15 -05:00

12 lines
194 B
C#

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