namespace AIStudio.Settings.DataModel; public sealed class DataApp { /// /// Should we save energy? When true, we will update content streamed /// from the server, i.e., AI, less frequently. /// public bool IsSavingEnergy { get; set; } /// /// Should we enable spellchecking for all input fields? /// public bool EnableSpellchecking { get; set; } /// /// If and when we should look for updates. /// public UpdateBehavior UpdateBehavior { get; set; } = UpdateBehavior.HOURLY; /// /// The navigation behavior. /// public NavBehavior NavigationBehavior { get; set; } = NavBehavior.NEVER_EXPAND_USE_TOOLTIPS; /// /// Should we preselect a provider for the entire app? /// public string PreselectedProvider { get; set; } = string.Empty; }