Files
Umbraco-CMS/src/Umbraco.Web.Common/Attributes/UmbracoApiControllerAttribute.cs

14 lines
437 B
C#
Raw Normal View History

using System;
using Umbraco.Cms.Web.Common.ApplicationModels;
namespace Umbraco.Cms.Web.Common.Attributes
{
/// <summary>
/// When present on a controller then <see cref="UmbracoApiBehaviorApplicationModelProvider"/> conventions will apply
/// </summary>
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)]
public sealed class UmbracoApiControllerAttribute : Attribute
{
}
}