// 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.
using System.Collections.Generic;
using Microsoft.AspNetCore.Rewrite.Internal;
using Microsoft.Extensions.FileProviders;
namespace Microsoft.AspNetCore.Rewrite
{
///
/// Options for the
///
public class RewriteOptions
{
///
/// The ordered list of rules to apply to the context.
///
public List Rules { get; set; } = new List();
public IFileProvider FileProvider { get; set; }
}
}