2016-06-18 14:50:32 +00:00
|
|
|
|
using PettingZoo.Model;
|
|
|
|
|
|
|
|
|
|
namespace PettingZoo.ViewModel
|
|
|
|
|
{
|
2016-06-18 18:30:12 +00:00
|
|
|
|
public class ConnectionViewModel
|
2016-06-18 14:50:32 +00:00
|
|
|
|
{
|
|
|
|
|
public ConnectionInfo ConnectionInfo { get; set; }
|
2016-06-18 18:30:12 +00:00
|
|
|
|
public string Exchange { get; set; }
|
|
|
|
|
public string RoutingKey { get; set; }
|
2016-06-18 14:50:32 +00:00
|
|
|
|
}
|
|
|
|
|
}
|