using AIStudio.Components.Pages.IconFinder; namespace AIStudio.Settings.DataModel; public sealed class DataIconFinder { /// /// Do we want to preselect any icon options? /// public bool PreselectOptions { get; set; } /// /// The preselected icon source. /// public IconSources PreselectedSource { get; set; } /// /// The preselected icon provider. /// public string PreselectedProvider { get; set; } = string.Empty; }