Files
MoonPro.net/MP-IO/Controllers/HomeController.cs
T
2020-11-20 16:59:57 +01:00

21 lines
384 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace MP_IO.Controllers
{
public class HomeController : Controller
{
#region Public Methods
// GET: Home
public RedirectResult Index()
{
return Redirect("status");
}
#endregion Public Methods
}
}