mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-14 17:18:32 -05:00
migrated to ASP.Net Core
This commit is contained in:
17
Webfront/Controllers/PlayerController.cs
Normal file
17
Webfront/Controllers/PlayerController.cs
Normal file
@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.Web.Mvc;
|
||||
|
||||
namespace Webfront.Controllers
|
||||
{
|
||||
public class PlayerController : Controller
|
||||
{
|
||||
// GET: Player
|
||||
public ActionResult Index()
|
||||
{
|
||||
return View();
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user