Files
QControlKit/QControlKit/QServerInfo.cs
T
jwetzell b622462c0d * QServerInfo.cs: Add barebones ServerInfo class
* QClient.cs: remove logging

* QWorkspace.cs: Add methods to build WorkspaceInfo and ServerInfo

* CueListPage.xaml.cs: List Multiple Cue Lists in Demo app
2020-11-29 14:38:16 -06:00

9 lines
149 B
C#

namespace QControlKit
{
public class QServerInfo
{
public string host { get; set; }
public int port { get; set; }
}
}