mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 16:49:06 +00:00
52 lines
1.4 KiB
C#
52 lines
1.4 KiB
C#
using AIStudio.Assistants.EMail;
|
|
using AIStudio.Provider;
|
|
|
|
namespace AIStudio.Settings.DataModel;
|
|
|
|
public sealed class DataEMail
|
|
{
|
|
/// <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 PreselectOtherLanguage { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Preselect any writing style?
|
|
/// </summary>
|
|
public WritingStyles PreselectedWritingStyle { get; set; }
|
|
|
|
/// <summary>
|
|
/// Preselect a greeting phrase?
|
|
/// </summary>
|
|
public string Greeting { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Preselect the sender name for the closing salutation?
|
|
/// </summary>
|
|
public string SenderName { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// The minimum confidence level required for a provider to be considered.
|
|
/// </summary>
|
|
public ConfidenceLevel MinimumProviderConfidence { get; set; } = ConfidenceLevel.NONE;
|
|
|
|
/// <summary>
|
|
/// Preselect a provider?
|
|
/// </summary>
|
|
public string PreselectedProvider { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Preselect a profile?
|
|
/// </summary>
|
|
public string PreselectedProfile { get; set; } = string.Empty;
|
|
} |