1
0
mirror of synced 2024-07-02 16:47:39 +00:00
Tapeti/Config/IMessageContext.cs

12 lines
233 B
C#
Raw Normal View History

2016-12-11 14:08:58 +00:00
using System.Collections.Generic;
namespace Tapeti.Config
{
public interface IMessageContext
{
object Controller { get; }
object Message { get; }
IDictionary<string, object> Items { get; }
}
}