20 lines
406 B
C#
20 lines
406 B
C#
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace Ewide.Web.Entry.Controllers
|
|
{
|
|
public class NingboZhiChunController : Controller
|
|
{
|
|
[AllowAnonymous]
|
|
public IActionResult Index()
|
|
{
|
|
return View();
|
|
}
|
|
[AllowAnonymous]
|
|
public IActionResult MyValid()
|
|
{
|
|
return View();
|
|
}
|
|
}
|
|
}
|