mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 22:49:07 +00:00
36 lines
972 B
C#
36 lines
972 B
C#
using AIStudio.Assistants.RewriteImprove;
|
|
|
|
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 any voice style?
|
|
/// </summary>
|
|
public SentenceStructure PreselectedSentenceStructure { get; set; }
|
|
|
|
/// <summary>
|
|
/// Preselect a provider?
|
|
/// </summary>
|
|
public string PreselectedProvider { get; set; } = string.Empty;
|
|
} |