14 lines
385 B
C#
14 lines
385 B
C#
namespace Tapeti.Flow
|
|
{
|
|
/// <summary>
|
|
/// Key names as used in the message context store. For internal use.
|
|
/// </summary>
|
|
public static class ContextItems
|
|
{
|
|
/// <summary>
|
|
/// Key given to the FlowContext object as stored in the message context.
|
|
/// </summary>
|
|
public const string FlowContext = "Tapeti.Flow.FlowContext";
|
|
}
|
|
}
|