Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Wolverine/Envelope.cs
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ public object? Message
/// <summary>
/// Id of the immediate message or workflow that caused this envelope to be sent
/// </summary>
public Guid ConversationId { get; internal set; }
public Guid ConversationId { get; set; }

/// <summary>
/// Location that this message should be sent
Expand All @@ -261,7 +261,7 @@ public object? Message
/// The open telemetry activity parent id. Wolverine uses this to correctly correlate connect
/// activity across services
/// </summary>
public string? ParentId { get; internal set; }
public string? ParentId { get; set; }

/// <summary>
/// User defined tenant identifier for multi-tenancy strategies. This is
Expand Down
Loading