| | | 1 | | namespace Elsa.Workflows.Runtime; |
| | | 2 | | |
| | | 3 | | public class ActivityExecutionRecordSnapshot |
| | | 4 | | { |
| | 3832 | 5 | | public string Id { get; set; } = null!; |
| | 3832 | 6 | | public string? TenantId { get; set; } |
| | 3832 | 7 | | public string WorkflowInstanceId { get; set; } = null!; |
| | 3832 | 8 | | public string ActivityId { get; set; } = null!; |
| | 3832 | 9 | | public string ActivityNodeId { get; set; } = null!; |
| | 3832 | 10 | | public string ActivityType { get; set; } = null!; |
| | 3832 | 11 | | public int ActivityTypeVersion { get; set; } |
| | 3832 | 12 | | public string? ActivityName { get; set; } |
| | 3832 | 13 | | public DateTimeOffset StartedAt { get; set; } |
| | 3832 | 14 | | public bool HasBookmarks { get; set; } |
| | 3832 | 15 | | public ActivityStatus Status { get; set; } |
| | 3832 | 16 | | public int AggregateFaultCount { get; set; } |
| | 3832 | 17 | | public DateTimeOffset? CompletedAt { get; set; } |
| | 6313 | 18 | | public string? SerializedActivityState { get; set; } |
| | 6313 | 19 | | public string? SerializedOutputs { get; set; } |
| | 6313 | 20 | | public string? SerializedProperties { get; set; } |
| | 6313 | 21 | | public string? SerializedPayload { get; set; } |
| | 6313 | 22 | | public string? SerializedMetadata { get; set; } |
| | 6313 | 23 | | public string? SerializedException { get; set; } |
| | 6313 | 24 | | public string? SerializedActivityStateCompressionAlgorithm { get; set; } |
| | | 25 | | } |