Remotely/Remotely_Desktop/Models/Viewer.cs
2019-03-13 18:30:04 -07:00

16 lines
329 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Remotely_Desktop.Models
{
public class Viewer
{
public string ConnectionId { get; set; }
public string Name { get; set; }
public bool HasControl { get; set; }
}
}