2024-08-22 13:41:35 +00:00
|
|
|
using AIStudio.Assistants.EMail;
|
2024-09-14 17:20:33 +00:00
|
|
|
using AIStudio.Provider;
|
2024-08-22 13:41:35 +00:00
|
|
|
|
|
|
|
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; }
|
2024-09-14 17:20:33 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Preselect a greeting phrase?
|
|
|
|
/// </summary>
|
|
|
|
public string Greeting { get; set; } = string.Empty;
|
2024-08-22 13:41:35 +00:00
|
|
|
|
|
|
|
/// <summary>
|
2024-09-14 17:20:33 +00:00
|
|
|
/// Preselect the sender name for the closing salutation?
|
2024-08-22 13:41:35 +00:00
|
|
|
/// </summary>
|
2024-09-14 17:20:33 +00:00
|
|
|
public string SenderName { get; set; } = string.Empty;
|
2024-09-08 19:01:51 +00:00
|
|
|
|
|
|
|
/// <summary>
|
2024-09-14 17:20:33 +00:00
|
|
|
/// The minimum confidence level required for a provider to be considered.
|
2024-09-08 19:01:51 +00:00
|
|
|
/// </summary>
|
2024-09-14 17:20:33 +00:00
|
|
|
public ConfidenceLevel MinimumProviderConfidence { get; set; } = ConfidenceLevel.NONE;
|
|
|
|
|
2024-08-22 13:41:35 +00:00
|
|
|
/// <summary>
|
2024-09-14 17:20:33 +00:00
|
|
|
/// Preselect a provider?
|
2024-08-22 13:41:35 +00:00
|
|
|
/// </summary>
|
2024-09-14 17:20:33 +00:00
|
|
|
public string PreselectedProvider { get; set; } = string.Empty;
|
2024-08-22 13:41:35 +00:00
|
|
|
|
|
|
|
/// <summary>
|
2024-09-14 17:20:33 +00:00
|
|
|
/// Preselect a profile?
|
2024-08-22 13:41:35 +00:00
|
|
|
/// </summary>
|
2024-09-14 17:20:33 +00:00
|
|
|
public string PreselectedProfile { get; set; } = string.Empty;
|
2024-08-22 13:41:35 +00:00
|
|
|
}
|