Files
mixtape/zero.Backoffice/ZeroBackofficeControllerModelConvention.cs
T
2021-12-13 12:21:15 +01:00

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);
}
}