mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-06 03:29:06 +00:00
21 lines
536 B
C#
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;
|
||
|
}
|