Remotely/Remotely_Server/Pages/Clients.cshtml.cs
Jared Goodwin 61fa16de4c Initial
2019-02-23 11:02:23 -08:00

17 lines
352 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace Remotely_Server.Pages
{
public class ClientsModel : PageModel
{
public void OnGet()
{
}
}
}