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

17 lines
418 B
C#
Raw Normal View History

using System.Text.Json.Serialization;
namespace Umbraco.Core.Configuration.Models
{
public class ImagingCacheSettings
{
public int MaxBrowserCacheDays { get; set; } = 7;
public int MaxCacheDays { get; set; } = 365;
public uint CachedNameLength { get; set; } = 7;
[JsonPropertyName("Folder")]
public string CacheFolder { get; set; } = "../App_Data/Cache";
}
}