ccfde19d2d
Added Mock connection Fixed AutoScroll failing with high rate message flow
15 lines
394 B
C#
15 lines
394 B
C#
namespace PettingZoo.Connection
|
|
{
|
|
public class ConnectionInfo
|
|
{
|
|
public string Host { get; set; }
|
|
public string VirtualHost { get; set; }
|
|
public int Port { get; set; }
|
|
public string Username { get; set; }
|
|
public string Password { get; set; }
|
|
|
|
public string Exchange { get; set; }
|
|
public string RoutingKey { get; set; }
|
|
}
|
|
}
|