-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDataStreamSetup.cs
More file actions
31 lines (27 loc) · 915 Bytes
/
DataStreamSetup.cs
File metadata and controls
31 lines (27 loc) · 915 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// -------------------------------------------------------------------------
// Copyright (c) Mecalc (Pty) Limited. All rights reserved.
// -------------------------------------------------------------------------
using System;
using System.Collections.Generic;
namespace QProtocol
{
/// <summary>
/// This class can be used with the /dataStream/setup/ endpoint to deserialize the response received.
/// </summary>
[Serializable]
public class DataStreamSetup
{
/// <summary>
/// Gets a list of available IP Addresses to connect to.
/// </summary>
public List<string> IPAddresses { get; set; }
/// <summary>
/// Gets the TCP socket port.
/// </summary>
public int TCPPort { get; set; }
/// <summary>
/// Gets the Web Socket port.
/// </summary>
public int WebSocketPort { get; set; }
}
}