// Copyright (c) Umbraco.
// See LICENSE for more details.
namespace Umbraco.Cms.Core.Configuration.Models
{
///
/// Typed configuration options for runtime settings.
///
[UmbracoOptions(Constants.Configuration.ConfigRuntime)]
public class RuntimeSettings
{
///
/// Gets or sets a value for the maximum query string length.
///
public int? MaxQueryStringLength { get; set; }
///
/// Gets or sets a value for the maximum request length in kb.
///
public int? MaxRequestLength { get; set; }
}
}