Ionite
1 year ago
2 changed files with 17 additions and 1 deletions
@ -0,0 +1,14 @@
|
||||
using CommunityToolkit.Mvvm.ComponentModel; |
||||
|
||||
namespace StabilityMatrix.Avalonia.Models; |
||||
|
||||
/// <summary> |
||||
/// Singleton DI service for observable shared UI state. |
||||
/// </summary> |
||||
public partial class SharedState : ObservableObject |
||||
{ |
||||
/// <summary> |
||||
/// Whether debug mode enabled from settings page version tap. |
||||
/// </summary> |
||||
[ObservableProperty] private bool isDebugMode; |
||||
} |
Loading…
Reference in new issue