2020-08-20 22:18:50 +01:00
|
|
|
|
namespace Umbraco.Core.Configuration.Models
|
2020-03-16 14:02:08 +01:00
|
|
|
|
{
|
2020-08-20 08:24:23 +01:00
|
|
|
|
public class RuntimeSettings
|
2020-03-16 14:02:08 +01:00
|
|
|
|
{
|
2020-08-20 08:24:23 +01:00
|
|
|
|
public int? MaxQueryStringLength { get; set; }
|
2020-03-16 14:02:08 +01:00
|
|
|
|
|
2020-08-20 08:24:23 +01:00
|
|
|
|
public int? MaxRequestLength { get; set; }
|
2020-03-16 14:02:08 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|