AI-Studio/app/MindWork AI Studio/Settings/DataModel/DataIconFinder.cs
2024-08-05 21:12:52 +02:00

21 lines
536 B
C#

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