| | | 1 | | using Elsa.Workflows.Models; |
| | | 2 | | |
| | | 3 | | namespace Elsa.Workflows.Runtime; |
| | | 4 | | |
| | | 5 | | public class ResumeBookmarkRequest |
| | | 6 | | { |
| | 0 | 7 | | public string WorkflowInstanceId { get; set; } = null!; |
| | | 8 | | |
| | | 9 | | /// The ID of the bookmark that triggered the workflow instance, if any. |
| | 0 | 10 | | public string BookmarkId { get; set; } = null!; |
| | | 11 | | |
| | | 12 | | /// The handle of the activity to schedule, if any. |
| | | 13 | | [Obsolete("Use ActivityInstanceId instead")] |
| | 0 | 14 | | public ActivityHandle? ActivityHandle { get; set; } |
| | | 15 | | |
| | | 16 | | /// <summary> |
| | | 17 | | /// The ID of the activity instance to resume, if any. |
| | | 18 | | /// </summary> |
| | 0 | 19 | | public string? ActivityInstanceId { get; set; } |
| | | 20 | | |
| | | 21 | | /// Any additional properties to associate with the workflow instance. |
| | 0 | 22 | | public IDictionary<string, object>? Properties { get; set; } |
| | | 23 | | |
| | | 24 | | /// The input to the workflow instance, if any. |
| | 0 | 25 | | public IDictionary<string, object>? Input { get; set; } |
| | | 26 | | } |