namespace QYZH.InteractiveMagazine.Infrastructure.RabbitMQ
{
public class RabbitMQSendParam
{
///
/// 交换机 默认空
///
public string Exchange { get; set; } = "";
public string Queue { get; set; }
///
/// 路由键
///
public string RoutingKey { get; set; }
///
/// 消息数据
///
public object Data { get; set; }
///
/// 是否清空队列
///
public bool Purge { get; set; } = false;
}
}