11 lines
325 B
C#
11 lines
325 B
C#
using zero.Api.Controllers;
|
|
|
|
namespace zero.Backoffice;
|
|
|
|
public class ZeroBackofficeControllerModelConvention : ZeroApiControllerModelConvention
|
|
{
|
|
public ZeroBackofficeControllerModelConvention(string path, bool isAppAware = false) : base(path, isAppAware)
|
|
{
|
|
BaseClassType = typeof(ZeroBackofficeController);
|
|
}
|
|
} |