// Copyright (c) Umbraco. // See LICENSE for more details. namespace Umbraco.Cms.Core.Configuration.Models { /// /// Typed configuration options for NuCache settings. /// public class NuCacheSettings { /// /// Gets or sets a value defining the BTree block size. /// public int? BTreeBlockSize { get; set; } } }