Skip to content

Commit

Permalink
Reverted using concrete implementation instead of interface
Browse files Browse the repository at this point in the history
Limitation of System.Text.Json: dotnet/runtime#30956
  • Loading branch information
belidzs committed Jun 19, 2020
1 parent 4efee08 commit 1ca8514
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Mailgun.Models.SignedEvent/SignedEvent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace Mailgun.Models.SignedEvent
public class SignedEvent
{
[Required]
public IMailgunSignature Signature { get; set; }
public MailgunSignature Signature { get; set; }

[Required]
public MailgunEvent EventData { get; set; }
Expand Down

0 comments on commit 1ca8514

Please sign in to comment.