// 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.Mvc.ApplicationParts { /// /// A part of an MVC application. /// public abstract class ApplicationPart { /// /// Gets the name. /// public abstract string Name { get; } } }