namespace AIStudio.Settings.DataModel; public sealed class DataChat { /// /// Shortcuts to send the input to the AI. /// public SendBehavior ShortcutSendBehavior { get; set; } = SendBehavior.MODIFER_ENTER_IS_SENDING; /// /// Preselect any chat options? /// public bool PreselectOptions { get; set; } /// /// Should we preselect a provider for the chat? /// public string PreselectedProvider { get; set; } = string.Empty; }