Files
number_zj/20220330_Vote/Ewide.Web.Entry/Controllers/VoteController.cs
2022-03-30 19:34:37 +08:00

17 lines
316 B
C#

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