123456789101112131415161718192021222324252627282930313233343536373839 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace FCS.Crawler.Tools.RabbitMQ
- {
- /// <summary>
- /// 链接服务器配置
- /// </summary>
- 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; }
- }
- }
|