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() { ViewBag.Title = "宁波市“甬江建设杯”选票"; return View(); } } }