Files
mixtape/zero.Backoffice/Controllers/ZeroBackofficeApiController.cs
T
2021-11-23 15:43:21 +01:00

12 lines
292 B
C#

using Microsoft.AspNetCore.Mvc;
namespace zero.Backoffice.Controllers;
[ApiController]
//[ServiceFilter(typeof(ModelStateValidationFilterAttribute))]
//[ServiceFilter(typeof(BackofficeFilterAttribute))]
public abstract class ZeroBackofficeApiController : ZeroBackofficeController
{
}