Skip to content

Commit

Permalink
added fromExternalApp to DataOrigin so we can send to new Que
Browse files Browse the repository at this point in the history
Signed-off-by: Neil South <[email protected]>
  • Loading branch information
neildsouth committed Oct 11, 2023
1 parent d4fb6a1 commit eb3c3eb
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Messaging/Events/WorkflowRequestEvent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ public class DataOrigin
[JsonPropertyName("destination")]
public string Destination { get; set; } = default!;

[JsonProperty(PropertyName = "fromExternalApp")]
[JsonPropertyName("fromExternalApp")]
public bool FromExternalApp { get; set; } = false;

public override int GetHashCode()
{
return HashCode.Combine(Source, Destination, DataService);
Expand Down

0 comments on commit eb3c3eb

Please sign in to comment.