refactor(split): rename DeepDrftWeb -> DeepDrftPublic and DeepDrftWeb.Client -> DeepDrftPublic.Client (Phase 4)
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
using Microsoft.AspNetCore.Components;
|
||||
|
||||
namespace DeepDrftPublic.Client.Common;
|
||||
|
||||
public class DarkModeSettings()
|
||||
{
|
||||
[PersistentState]
|
||||
public bool IsDarkMode
|
||||
{
|
||||
get;
|
||||
set
|
||||
{
|
||||
if (value == field) return;
|
||||
field = value;
|
||||
}
|
||||
} = false;
|
||||
}
|
||||
Reference in New Issue
Block a user