mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-05-01 07:12:50 +08:00
19 lines
548 B
C#
19 lines
548 B
C#
namespace Spectre.Console;
|
|
|
|
/// <summary>
|
|
/// Contains settings for profile enrichment.
|
|
/// </summary>
|
|
public sealed class ProfileEnrichment
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether or not
|
|
/// any default enrichers should be added.
|
|
/// </summary>
|
|
/// <remarks>Defaults to <c>true</c>.</remarks>
|
|
public bool UseDefaultEnrichers { get; set; } = true;
|
|
|
|
/// <summary>
|
|
/// Gets or sets the list of custom enrichers to use.
|
|
/// </summary>
|
|
public List<IProfileEnricher>? Enrichers { get; set; }
|
|
} |