1
0
mirror of synced 2024-06-29 15:27:40 +00:00
Tapeti/Config/IMessageContext.cs
2016-12-14 20:28:17 +01:00

17 lines
359 B
C#

using System.Collections.Generic;
using RabbitMQ.Client;
namespace Tapeti.Config
{
public interface IMessageContext
{
IDependencyResolver DependencyResolver { get; }
object Controller { get; }
object Message { get; }
IBasicProperties Properties { get; }
IDictionary<string, object> Items { get; }
}
}