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.ONCE_STARTUP;
///
/// The navigation behavior.
///
public NavBehavior NavigationBehavior { get; set; } = NavBehavior.EXPAND_ON_HOVER;
}