Queue
老邱 authored at 2016-12-20 11:46:24
331.00 B
X
using System;
using System.Collections.Generic;

namespace NewLife.Queue.Protocols.Brokers.Requests
{
    [Serializable]
    public class BatchSendMessageRequest
    {
        public int QueueId { get; set; }
        public IEnumerable<Message> Messages { get; set; }
        public string ProducerAddress { get; set; }
    }
}