mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 23:29:06 +00:00
42 lines
1.1 KiB
C#
42 lines
1.1 KiB
C#
using AIStudio.Assistants.EMail;
|
|
using AIStudio.Tools;
|
|
|
|
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 provider?
|
|
/// </summary>
|
|
public string PreselectedProvider { get; set; } = string.Empty;
|
|
|
|
/// <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;
|
|
} |