mirror of https://github.com/abpframework/abp
parent
687603d7a5
commit
b421f915c1
@ -0,0 +1,7 @@
|
||||
@page
|
||||
@inherits MyCompanyName.MyProjectName.Web.Pages.MyProjectNamePage
|
||||
@model MyCompanyName.MyProjectName.Web.Pages.MyProjectName.IndexModel
|
||||
@{
|
||||
}
|
||||
<h1>MyProjectName</h1>
|
||||
<p>A sample page for the MyProjectName module.</p>
|
@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.Mvc.RazorPages;
|
||||
|
||||
namespace MyCompanyName.MyProjectName.Web.Pages.MyProjectName
|
||||
{
|
||||
public class IndexModel : PageModel
|
||||
{
|
||||
public void OnGet()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in new issue