2020-08-24 09:29:40 +02:00
|
|
|
|
namespace Umbraco.Core.Configuration.Models
|
2020-08-20 08:24:23 +01:00
|
|
|
|
{
|
|
|
|
|
|
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;
|
2020-08-20 08:24:23 +01:00
|
|
|
|
|
|
|
|
|
|
public string CacheFolder { get; set; } = "../App_Data/Cache";
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|