13 lines
336 B
C#
13 lines
336 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using Umbraco.New.Cms.Web.Common.Routing;
|
|
|
|
namespace Umbraco.Cms.Api.Management.Controllers.Profiling;
|
|
|
|
[ApiVersion("1.0")]
|
|
[ApiController]
|
|
[VersionedApiBackOfficeRoute("profiling")]
|
|
[ApiExplorerSettings(GroupName = "Profiling")]
|
|
public class ProfilingControllerBase : ManagementApiControllerBase
|
|
{
|
|
}
|