esh/esh.core.web/Pages/Index.cshtml.cs
2019-08-10 13:37:12 +02:00

16 lines
281 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace esh.core.web.Pages
{
public class IndexModel : PageModel
{
public void OnGet()
{
}
}
}