18 lines
670 B
C#
18 lines
670 B
C#
// 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;
|
|
|
|
namespace Microsoft.AspNetCore.Mvc
|
|
{
|
|
/// <summary>
|
|
/// Indicates that the type and any derived types that this attribute is applied to
|
|
/// are considered a controller by the default controller discovery mechanism, unless
|
|
/// <see cref="NonControllerAttribute"/> is applied to any type in the hierarchy.
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)]
|
|
public class ControllerAttribute : Attribute
|
|
{
|
|
}
|
|
}
|