You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
461 B
C#
17 lines
461 B
C#
using DS.WMS.Core.Op.Entity.TaskInteraction;
|
|
|
|
namespace DS.WMS.Core.Op.Dtos.TaskInteraction
|
|
{
|
|
/// <summary>
|
|
/// 动作执行上下文
|
|
/// </summary>
|
|
public class ActionExecutionContext
|
|
{
|
|
public BusinessTask TaskInfo { get; internal set; }
|
|
|
|
public IServiceProvider ServiceProvider { get; internal set; }
|
|
|
|
public IDictionary<string, object?> AdditionalData { get; set; } = new Dictionary<string, object?>();
|
|
}
|
|
}
|