Remotely/Shared/Models/ScreenCastRequest.cs
2021-07-29 07:56:52 -07:00

11 lines
271 B
C#

namespace Remotely.Shared.Models
{
public class ScreenCastRequest
{
public bool NotifyUser { get; set; }
public string RequesterName { get; set; }
public string ViewerID { get; set; }
public bool UseWebRtc { get; set; }
}
}