using System; namespace Umbraco.Web.WebApi { /// /// When applied to an api controller it will be routed to the /Umbraco/BackOffice prefix route so we can determine if it /// is a back office route or not. /// [AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)] public sealed class IsBackOfficeAttribute : Attribute { } }