v9.6.2017.0808   重构正向工程,基于映射表查找数据库字段类型到实体类型的映射
大石头 authored at 2017-08-08 21:38:06
429.00 B
X
using System;
using System.Collections.Generic;
using NewLife.Queue.Protocols.Brokers;

namespace NewLife.Queue.Protocols.CenterServers
{
    [Serializable]
    public class BrokerProducerListInfo
    {
        public BrokerInfo BrokerInfo { get; set; }
        public IList<string> ProducerList { get; set; }

        public BrokerProducerListInfo()
        {
            ProducerList = new List<string>();
        }
    }
}