Files
Umbraco-CMS/src/Umbraco.Core/Configuration/Models/CoreDebugSettings.cs
Andy Butland e3a44c6717 Moved configuration setting POCOs into Umbraco.Core and adjusted references.
Amended injection of some settings to use IOptionsSnapshot.
2020-08-20 22:18:50 +01:00

10 lines
231 B
C#

namespace Umbraco.Core.Configuration.Models
{
public class CoreDebugSettings
{
public bool LogUncompletedScopes { get; set; } = false;
public bool DumpOnTimeoutThreadAbort { get; set; } = false;
}
}