Files
MoonPro.net/MP-API/Controllers/AliveController.cs
T
2016-12-23 15:59:04 +01:00

17 lines
306 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace MP_API.Controllers
{
public class AliveController : Controller
{
// GET: Alive
public ActionResult Index()
{
return View();
}
}
}