Remotely/Server/Models/RemoteControlRequest.cs
2023-07-21 10:16:29 -07:00

9 lines
196 B
C#

namespace Remotely.Server.Models;
public class RemoteControlRequest
{
public string DeviceID { get; set; }
public string Email { get; set; }
public string Password { get; set; }
}