Remotely/Server/Pages/RemoteControl.cshtml.cs
2021-07-29 07:56:44 -07:00

15 lines
315 B
C#

using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
using Remotely.Server.Attributes;
namespace Remotely.Server.Pages
{
[ServiceFilter(typeof(RemoteControlFilterAttribute))]
public class RemoteControlModel : PageModel
{
public void OnGet()
{
}
}
}