// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information. using Microsoft.AspNet.Abstractions; namespace Microsoft.AspNet.Diagnostics { /// /// Options for the WelcomePageMiddleware. /// public class WelcomePageOptions { /// /// Specifies which requests paths will be responded to. Exact matches only. Leave null to handle all requests. /// public PathString Path { get; set; } } }