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

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

        public DeleteConsumerGroupRequest(string groupName)
        {
            GroupName = groupName;
        }

        public override string ToString()
        {
            return string.Format("[GroupName:{0}]", GroupName);
        }
    }
}