RDS Collections import
This commit is contained in:
parent
fbec129fc1
commit
dbfdb87088
32 changed files with 1504 additions and 347 deletions
|
@ -0,0 +1,17 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using WebsitePanel.EnterpriseServer.Base.RDS;
|
||||
|
||||
namespace WebsitePanel.Providers.RemoteDesktopServices
|
||||
{
|
||||
public class ImportedRdsCollection
|
||||
{
|
||||
public string CollectionName { get; set; }
|
||||
public string Description { get; set; }
|
||||
public List<RdsCollectionSetting> CollectionSettings { get; set; }
|
||||
public List<RdsCollectionSetting> UserGroups { get; set; }
|
||||
public List<string> SessionHosts { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue