Files
mixtape/zero.Web/Controllers/BackofficeController.cs
T

13 lines
234 B
C#
Raw Normal View History

2020-03-22 14:47:59 +01:00
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
2020-03-24 23:09:29 +01:00
namespace zero.Web.Controllers
2020-03-22 14:47:59 +01:00
{
public abstract class BackofficeController : Controller
{
}
}