1
0
mirror of synced 2024-11-15 01:33:51 +00:00
PettingZoo/ViewModel/ConnectionViewModel.cs

12 lines
264 B
C#
Raw Normal View History

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
}
}