初始提交
This commit is contained in:
13
Host/Controllers/MvcBaseController.cs
Normal file
13
Host/Controllers/MvcBaseController.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using Microsoft.AspNetCore.Authorization;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
namespace Home.Controllers
|
||||
{
|
||||
[Controller]
|
||||
[AllowAnonymous]
|
||||
[Route("[Controller]/[Action]")]
|
||||
public abstract class MvcBaseController : Controller
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user