using System;
using System.Collections.Generic;
using System.Text;
namespace Pole.ReliableMessage.Storage.Mongodb
{
public sealed class MongoHost
{
///
/// 主机或者IP地址
///
public string Host { get; set; }
///
/// 端口号
///
public int Port { get; set; }
}
}