Remotely/Server/Models/RemoteControlRequest.cs
2023-07-26 11:31:34 -07:00

9 lines
199 B
C#

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