Files
mixtape/zero.Backoffice/Controllers/ZeroBackofficeApiController.cs
T

12 lines
292 B
C#
Raw Normal View History

2021-11-23 15:43:21 +01:00
using Microsoft.AspNetCore.Mvc;
namespace zero.Backoffice.Controllers;
[ApiController]
//[ServiceFilter(typeof(ModelStateValidationFilterAttribute))]
//[ServiceFilter(typeof(BackofficeFilterAttribute))]
public abstract class ZeroBackofficeApiController : ZeroBackofficeController
{
}