using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation
{
///
/// rabbitmq参数
///
public class Paras_RabbitMq
{
///
/// IP地址
///
public string HostName { get; set; }
///
/// 用户名称
///
public string UserName { get; set; }
///
/// 密码
///
public string Password { get; set; }
}
}