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

Page1.cshtml.cs « Pages « MyFeature « Areas « RazorClassLibrary-CSharp « content « Web.ProjectTemplates « ProjectTemplates « src - github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 07a0edacfcca57046b3312469aea25af82a95496 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;

namespace Company.RazorClassLibrary1.MyFeature.Pages
{
    public class Page1Model : PageModel
    {
        public void OnGet()
        {

        }
    }
}