mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 22:29:07 +00:00
24 lines
627 B
C#
24 lines
627 B
C#
namespace AIStudio.Settings.DataModel;
|
|
|
|
public sealed class DataSynonyms
|
|
{
|
|
/// <summary>
|
|
/// Preselect any rewrite options?
|
|
/// </summary>
|
|
public bool PreselectOptions { get; set; }
|
|
|
|
/// <summary>
|
|
/// Preselect the language?
|
|
/// </summary>
|
|
public CommonLanguages PreselectedLanguage { get; set; }
|
|
|
|
/// <summary>
|
|
/// Preselect any other language?
|
|
/// </summary>
|
|
public string PreselectedOtherLanguage { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Preselect a provider?
|
|
/// </summary>
|
|
public string PreselectedProvider { get; set; } = string.Empty;
|
|
} |