websitepanel/WebsitePanel/Sources/WebsitePanel.Providers.Base/RemoteDesktopServices/RdsCollection.cs
2014-11-10 11:14:15 +03:00

21 lines
No EOL
508 B
C#

using System;
using System.Collections.Generic;
namespace WebsitePanel.Providers.RemoteDesktopServices
{
[Serializable]
public class RdsCollection
{
public RdsCollection()
{
Servers = new List<RdsServer>();
}
public int Id { get; set; }
public int ItemId { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public List<RdsServer> Servers { get; set; }
}
}