using AIStudio.Assistants.EMail;
using AIStudio.Tools;
namespace AIStudio.Settings.DataModel;
public sealed class DataEMail
{
///
/// Preselect any rewrite options?
///
public bool PreselectOptions { get; set; }
///
/// Preselect the target language?
///
public CommonLanguages PreselectedTargetLanguage { get; set; }
///
/// Preselect any other language?
///
public string PreselectOtherLanguage { get; set; } = string.Empty;
///
/// Preselect any writing style?
///
public WritingStyles PreselectedWritingStyle { get; set; }
///
/// Preselect a provider?
///
public string PreselectedProvider { get; set; } = string.Empty;
///
/// Preselect a greeting phrase?
///
public string Greeting { get; set; } = string.Empty;
///
/// Preselect the sender name for the closing salutation?
///
public string SenderName { get; set; } = string.Empty;
}