Make theme switch a view component

This commit is contained in:
Dennis Reimann
2021-09-27 14:45:04 +02:00
committed by Andrew Camilleri
parent 7bcaf956e7
commit faed5349fb
6 changed files with 53 additions and 15 deletions

View File

@@ -0,0 +1,8 @@
namespace BTCPayServer.Components.ThemeSwitch
{
public class ThemeSwitchViewModel
{
public string CssClass { get; set; }
public string Responsive { get; set; }
}
}