Files
RavenDB.Identity/Sample/Pages/Index.cshtml.cs
T
2019-03-04 16:58:35 -06:00

18 lines
304 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 Sample.Pages
{
public class IndexModel : PageModel
{
public void OnGet()
{
}
}
}