// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
namespace Microsoft.AspNetCore.Routing
{
public class LinkOptions
{
///
/// Gets or sets a value indicating whether all generated paths URLs are lower-case.
/// Use to configure the behavior for query strings.
///
public bool? LowercaseUrls { get; set; }
///
/// Gets or sets a value indicating whether a generated query strings are lower-case.
/// This property will be unless is also true.
///
public bool? LowercaseQueryStrings { get; set; }
///
/// Gets or sets a value indicating whether a trailing slash should be appended to the generated URLs.
///
public bool? AppendTrailingSlash { get; set; }
}
}