PlotDirector/PlotLine/Controllers/HomeController.cs
2026-06-01 09:03:59 +01:00

28 lines
611 B
C#

using Microsoft.AspNetCore.Mvc;
using PlotLine.Models;
using System.Diagnostics;
namespace PlotLine.Controllers
{
public class HomeController : Controller
{
public IActionResult Index()
{
return View();
}
public IActionResult Privacy()
{
return View();
}
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
public IActionResult Error()
{
return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
}
}
}