Remotely/Server/Pages/Agents.cshtml.cs
2019-12-12 18:27:53 -08:00

17 lines
351 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 AgentsModel : PageModel
{
public void OnGet()
{
}
}
}