Files
Umbraco-CMS/src/Umbraco.Core/Configuration/Models/NuCacheSettings.cs

17 lines
406 B
C#
Raw Normal View History

// Copyright (c) Umbraco.
// See LICENSE for more details.
namespace Umbraco.Core.Configuration.Models
2020-03-16 14:02:08 +01:00
{
/// <summary>
/// Typed configuration options for NuCache settings.
/// </summary>
public class NuCacheSettings
2020-03-16 14:02:08 +01:00
{
/// <summary>
/// Gets or sets a value defining the BTree block size.
/// </summary>
public int? BTreeBlockSize { get; set; }
2020-03-16 14:02:08 +01:00
}
}