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

14 lines
342 B
C#
Raw Normal View History

namespace Umbraco.Core.Configuration.Models
{
public class ImagingCacheSettings
{
public int MaxBrowserCacheDays { get; set; } = 7;
public int MaxCacheDays { get; set; } = 365;
2020-09-01 18:10:12 +02:00
public uint CachedNameLength { get; set; } = 8;
public string CacheFolder { get; set; } = "../App_Data/Cache";
}
}