RDS user sessions added

This commit is contained in:
vfedosevich 2015-01-29 01:28:02 -08:00
parent 07a68d5ba1
commit 128fdaaa0b
20 changed files with 922 additions and 4 deletions

View file

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace WebsitePanel.Providers.RemoteDesktopServices
{
public class RdsUserSession
{
public string CollectionName { get; set; }
public string UserName { get; set; }
public string UnifiedSessionId { get; set; }
public string SessionState { get; set; }
public string HostServer { get; set; }
}
}