Files
2026-04-02 17:45:13 +02:00

22 lines
422 B
C#

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