using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace FCS.Crawler.Tools.RabbitMQ { /// /// 链接服务器配置 /// public class RabbitMQConfigModel { public string IP { get; set; } public string UserName { get; set; } public string PassWord { get; set; } public string Port { get; set; } public string VirtualHost { get; set; } public bool DurablQqueue { get; set; } public string QueueName { get; set; } public string ExchangeName { get; set; } public string ExchangeType { get; set; } public bool DurableMessage { get; set; } public string RoutingKey { get; set; } } }