Skip to content

Commit

Permalink
fix: use the correct type for headers
Browse files Browse the repository at this point in the history
  • Loading branch information
RodrigoPereyraDiaz committed Sep 27, 2023
1 parent 1bff40b commit 85f07a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GreenArrow.Engine/Model/Events/DeliveryAttempt.cs
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ public enum StatusEnum
/// Folded headers will simply contain the folding newlines/whitespace.
/// As a header may be included in an email multiple times, the value of the JSON object is an array of strings.
/// </summary>
public object Headers { get; init; }
public Dictionary<string, List<string>> Headers { get; init; }

/// <summary>
/// The size of the message (in bytes), if loaded from storage.
Expand Down

0 comments on commit 85f07a0

Please sign in to comment.