// 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.Linq; using Microsoft.Framework.OptionsModel; namespace Microsoft.AspNet.Mvc { public class TestOptionsManager : OptionsManager where T : class, new() { public TestOptionsManager() : base(Enumerable.Empty>()) { } } }