mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
20 lines
530 B
C#
20 lines
530 B
C#
using Remotely_ScreenCast.Capture;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Remotely_ScreenCapture.Models
|
|
{
|
|
public class Viewer
|
|
{
|
|
public string ViewerConnectionID { get; set; }
|
|
public string Name { get; set; }
|
|
public ICapturer Capturer { get; set; }
|
|
public int CurrentScreenIndex { get; set; }
|
|
public bool DisconnectRequested { get; set; }
|
|
public bool HasControl { get; set; }
|
|
}
|
|
}
|