websitepanel/WebsitePanel/Sources/WebsitePanel.Providers.Base/RemoteDesktopServices/RdsServerSetting.cs
vfedosevich dd5fc131bc RDS GPO
2015-03-27 05:14:53 -07:00

15 lines
402 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace WebsitePanel.EnterpriseServer.Base.RDS
{
public class RdsServerSetting
{
public string PropertyName { get; set; }
public string PropertyValue { get; set; }
public bool ApplyUsers { get; set; }
public bool ApplyAdministrators { get; set; }
}
}