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