using CommunityToolkit.Mvvm.ComponentModel;
using StabilityMatrix.Core.Attributes;
namespace StabilityMatrix.Avalonia.Models;
///
/// Singleton DI service for observable shared UI state.
///
[Singleton]
public partial class SharedState : ObservableObject
{
///
/// Whether debug mode enabled from settings page version tap.
///
[ObservableProperty]
private bool isDebugMode;
}