Files
OnDoc/API_NetFramework - Kopie (2)/Controllers/HomeController.cs
Stefan Hutter 00eae8a837 Update 20250204
2025-02-04 22:36:20 +01:00

19 lines
336 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace API_NetFramework.Controllers
{
public class HomeController : Controller
{
public ActionResult Index()
{
ViewBag.Title = "Home Page";
return View();
}
}
}