namespace Spectre.Console;
///
/// Contains settings for profile enrichment.
///
public sealed class ProfileEnrichment
{
///
/// Gets or sets a value indicating whether or not
/// any default enrichers should be added.
///
/// Defaults to true.
public bool UseDefaultEnrichers { get; set; } = true;
///
/// Gets or sets the list of custom enrichers to use.
///
public List? Enrichers { get; set; }
}