14 lines
200 B
C#
14 lines
200 B
C#
|
|
using System.Web.Mvc;
|
|
|
|
namespace MP_IO.Interfaces
|
|
{
|
|
public interface IHomeService
|
|
{
|
|
/// <summary>
|
|
/// GET: Home
|
|
/// </summary>
|
|
RedirectResult Index();
|
|
}
|
|
}
|