mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 22:49:07 +00:00
21 lines
530 B
C#
21 lines
530 B
C#
using AIStudio.Assistants.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;
|
|
} |