1
0
mirror of synced 2024-06-30 15:57:39 +00:00
Tapeti/Config/IMessageContext.cs

12 lines
233 B
C#

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