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

11 lines
185 B
C#
Raw Normal View History

2021-11-23 15:43:21 +01:00
using Microsoft.AspNetCore.Mvc;
namespace zero.Backoffice.Controllers;
[ZeroAuthorize]
[DisableBrowserCache]
public abstract class ZeroBackofficeController : ControllerBase
{
2021-11-27 16:33:05 +01:00
2021-11-23 15:43:21 +01:00
}