Patrik Svensson 52c1d9122b
Add global usings (#668)
* Use global usings

* Fix namespace declarations for test projects
2021-12-23 16:50:31 +01:00

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; }
}