namespace AIStudio.Settings.DataModel; public class DataI18N { /// /// Preselect any I18N options? /// public bool PreselectOptions { get; set; } /// /// Preselect a language plugin to where the new content should compare to? /// public Guid PreselectedLanguagePluginId { get; set; } /// /// Preselect the target language? /// public CommonLanguages PreselectedTargetLanguage { get; set; } = CommonLanguages.EN_GB; /// /// Preselect any other language? /// public string PreselectOtherLanguage { get; set; } = string.Empty; /// /// Which LLM provider should be preselected? /// public string PreselectedProvider { get; set; } = string.Empty; }