update vor token

This commit is contained in:
Stefan Hutter
2024-10-01 15:26:52 +02:00
parent bbace0411f
commit 4c4d27bf48
2069 changed files with 493200 additions and 150 deletions

View File

@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace OnDocWeb.Controllers
{
public class HomeController : Controller
{
public ActionResult Index()
{
ViewBag.Title = "Home Page";
return View();
}
}
}