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

11 lines
No EOL
355 B
C#

namespace WebsitePanel.Providers.RemoteDesktopServices
{
public class RemoteApplication
{
public string Alias { get; set; }
public string DisplayName { get; set; }
public string FilePath { get; set; }
public string FileVirtualPath { get; set; }
public bool ShowInWebAccess { get; set; }
}
}