Files
mixtape/zero.Backoffice/ZeroBackofficeControllerModelConvention.cs
T

11 lines
325 B
C#
Raw Normal View History

2021-12-13 12:21:15 +01:00
using zero.Api.Controllers;
2021-11-23 15:43:21 +01:00
2021-11-30 15:35:50 +01:00
namespace zero.Backoffice;
2021-11-23 15:43:21 +01:00
2021-12-03 14:45:49 +01:00
public class ZeroBackofficeControllerModelConvention : ZeroApiControllerModelConvention
2021-11-23 15:43:21 +01:00
{
2021-12-13 12:21:15 +01:00
public ZeroBackofficeControllerModelConvention(string path, bool isAppAware = false) : base(path, isAppAware)
2021-11-23 15:43:21 +01:00
{
2021-12-13 12:21:15 +01:00
BaseClassType = typeof(ZeroBackofficeController);
2021-11-23 15:43:21 +01:00
}
}