namespace Bloxstrap.Models.Persistable { public class State { public bool ShowFFlagEditorWarning { get; set; } = true; public bool PromptWebView2Install { get; set; } = true; public AppState Player { get; set; } = new(); public AppState Studio { get; set; } = new(); public WindowState SettingsWindow { get; set; } = new(); public List ModManifest { get; set; } = new(); } }