repomgr/Pages/Index.cshtml.cs
2019-07-05 00:36:10 +02:00

16 lines
303 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 repomgr.Pages
{
public class IndexModel : PageModel
{
public void OnGet()
{
}
}
}