Files
Umbraco-CMS/src/Umbraco.Core/Configuration/IImagingSettings.cs
2020-03-17 17:56:00 +01:00

13 lines
316 B
C#

namespace Umbraco.Core.Configuration
{
public interface IImagingSettings
{
int MaxBrowserCacheDays { get;}
int MaxCacheDays { get; }
uint CachedNameLength { get; }
int MaxResizeWidth { get; }
int MaxResizeHeight { get; }
string CacheFolder { get; }
}
}