2020-08-20 08:24:23 +01:00
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
2020-08-20 22:18:50 +01: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;
|
|
|
|
|
|
|
|
|
|
|
|
public uint CachedNameLength { get; set; } = 7;
|
|
|
|
|
|
|
|
|
|
|
|
[JsonPropertyName("Folder")]
|
|
|
|
|
|
public string CacheFolder { get; set; } = "../App_Data/Cache";
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|