aspnetcore/src/Microsoft.DotNet.Web.ItemTe.../content/RazorPage/Index.cshtml.cs

20 lines
406 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 MyApp.Namespace
{
#if NameIsPage
public class IndexModel : Microsoft.AspNetCore.Mvc.RazorPages.PageModel
#else
public class IndexModel : PageModel
#endif
{
public void OnGet()
{
}
}
}