Files
number_zj/20220330_Vote/Ewide.Web.Entry/Controllers/VoteController.cs
2022-03-31 09:07:38 +08:00

19 lines
379 B
C#

using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Ewide.Web.Entry.Controllers
{
[AllowAnonymous]
public class VoteController : Controller
{
public IActionResult Index()
{
return View();
}
}
}