mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-06 03:09:07 +00:00
32 lines
855 B
C#
32 lines
855 B
C#
|
using AIStudio.Components.Pages.RewriteImprove;
|
||
|
using AIStudio.Tools;
|
||
|
|
||
|
namespace AIStudio.Settings.DataModel;
|
||
|
|
||
|
public sealed class DataRewriteImprove
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Preselect any rewrite options?
|
||
|
/// </summary>
|
||
|
public bool PreselectOptions { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// Preselect the target language?
|
||
|
/// </summary>
|
||
|
public CommonLanguages PreselectedTargetLanguage { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// Preselect any other language?
|
||
|
/// </summary>
|
||
|
public string PreselectedOtherLanguage { get; set; } = string.Empty;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Preselect any writing style?
|
||
|
/// </summary>
|
||
|
public WritingStyles PreselectedWritingStyle { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// Preselect a provider?
|
||
|
/// </summary>
|
||
|
public string PreselectedProvider { get; set; } = string.Empty;
|
||
|
}
|