2016-07-12 14:57:24 +00:00
|
|
|
|
namespace PettingZoo.Connection
|
2016-06-18 14:50:32 +00:00
|
|
|
|
{
|
|
|
|
|
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; }
|
2016-06-20 10:30:03 +00:00
|
|
|
|
|
|
|
|
|
public string Exchange { get; set; }
|
|
|
|
|
public string RoutingKey { get; set; }
|
2016-06-18 14:50:32 +00:00
|
|
|
|
}
|
|
|
|
|
}
|