using AIStudio.Assistants.EDI;
using AIStudio.Provider;
namespace AIStudio.Settings.DataModel;
public sealed class DataEDI
{
///
/// Preselect any EDI options?
///
public bool PreselectOptions { get; set; }
///
/// Preselect the language for implementing the EDI?
///
public ProgrammingLanguages PreselectedProgrammingLanguage { get; set; }
///
/// Do you want to preselect any other language?
///
public string PreselectedOtherProgrammingLanguage { get; set; } = string.Empty;
///
/// Preselect a data source?
///
public DataSources PreselectedDataSource { get; set; }
///
/// Do you want to preselect any other data source?
///
public string PreselectedOtherDataSource { get; set; } = string.Empty;
///
/// Preselect any authentication methods?
///
public HashSet PreselectedAuthMethods { get; set; } = [];
///
/// Do you want to preselect any authentication description?
///
public string PreselectedAuthDescription { get; set; } = string.Empty;
///
/// The minimum confidence level required for a provider to be considered.
///
public ConfidenceLevel MinimumProviderConfidence { get; set; } = ConfidenceLevel.NONE;
///
/// Which coding provider should be preselected?
///
public string PreselectedProvider { get; set; } = string.Empty;
///
/// Preselect a profile?
///
public string PreselectedProfile { get; set; } = string.Empty;
}