Skip to content

Commit

Permalink
fix: change to generic type
Browse files Browse the repository at this point in the history
This is to receive the value without know how deserialize the value
  • Loading branch information
RodrigoPereyraDiaz committed Sep 21, 2023
1 parent 4de9ab3 commit 4d28e79
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 @@ -150,7 +150,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 ICollection<string> Headers { get; init; }
public object Headers { get; init; }

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

0 comments on commit 4d28e79

Please sign in to comment.