mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/JiboExperiments.git
synced 2026-06-16 10:16:20 +00:00
7 lines
263 B
C#
7 lines
263 B
C#
|
|
namespace Jibo.Runtime.Abstractions;
|
|||
|
|
|
|||
|
|
public sealed class SetContextAction : PlanAction
|
|||
|
|
{
|
|||
|
|
public override PlanActionType Type => PlanActionType.SetContext;
|
|||
|
|
public IDictionary<string, object?> Values { get; init; } = new Dictionary<string, object?>();
|
|||
|
|
}
|