Welcome to mirror list, hosted at ThFree Co, Russian Federation.

RazorPageWithPageModel.cshtml.cs « Templates « MonoDevelop.AspNetCore « addins « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 732dc1b204cceba51404b767d0a1109ac30aac9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;

namespace ${Namespace}
{
	public class ${EscapedIdentifier}Model : PageModel
    {
        public void OnGet()
        {
        }
    }
}