mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
11 lines
271 B
C#
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; }
|
|
}
|
|
}
|