QueueInfo.cs 274 Bytes Edit 1 2 3 4 5 6 7 8 9 10 11 12 namespace Pole.EventBus.RabbitMQ { public class QueueInfo { public string Queue { get; set; } public string RoutingKey { get; set; } public override string ToString() { return $"{Queue}_{RoutingKey}"; } } }