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

namespace NewLife.Queue.Protocols.CenterServers.Requests
{
    [Serializable]
    public class SetQueueProducerVisibleForClusterRequest
    {
        public string ClusterName { get; set; }
        public string Topic { get; set; }
        public int QueueId { get; set; }
        public bool Visible { get; set; }
    }
}