1
0
mirror of synced 2024-11-14 17:33:49 +00:00
PettingZoo/ViewModel/ConnectionViewModel.cs
2016-06-18 20:30:12 +02:00

12 lines
264 B
C#

using PettingZoo.Model;
namespace PettingZoo.ViewModel
{
public class ConnectionViewModel
{
public ConnectionInfo ConnectionInfo { get; set; }
public string Exchange { get; set; }
public string RoutingKey { get; set; }
}
}