// Copyright (c) Umbraco.
// See LICENSE for more details.
namespace Umbraco.Cms.Core.Configuration.Models;
///
/// Typed configuration options for imaging settings.
///
[UmbracoOptions(Constants.Configuration.ConfigImaging)]
public class ImagingSettings
{
///
/// Gets or sets a value for imaging cache settings.
///
public ImagingCacheSettings Cache { get; set; } = new();
///
/// Gets or sets a value for imaging resize settings.
///
public ImagingResizeSettings Resize { get; set; } = new();
}