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