2020-09-14 21:27:31 +02:00
|
|
|
|
using System.IO;
|
|
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2020-09-15 10:27:23 +02:00
|
|
|
|
public string CacheFolder { get; set; } = Path.Combine("..", "Umbraco", "MediaCache");
|
2020-08-20 08:24:23 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|