Queue
老邱 authored at 2016-12-20 11:46:24
298.00 B
X
using System;

namespace NewLife.Queue.Protocols.Brokers.Requests
{
    [Serializable]
    public class GetTopicQueueInfoRequest
    {
        public string Topic { get; private set; }

        public GetTopicQueueInfoRequest(string topic)
        {
            Topic = topic;
        }
    }
}