12 lines
292 B
C#
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
|
|
{
|
|
|
|
}
|