cloudnet-compose/result/dotnet/Result/Pages/Index.cshtml.cs

18 lines
304 B
C#
Raw Normal View History

2018-09-21 20:23:31 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace Result.Pages
{
public class IndexModel : PageModel
{
public void OnGet()
{
}
}
}