Skip to content

Commit

Permalink
Merge pull request #84 from nis-spiir/patch-1
Browse files Browse the repository at this point in the history
Fix `PostmarkInboundMessage.Attachment` model
  • Loading branch information
vladsandu authored Jul 8, 2020
2 parents bb0119e + a2441ed commit 736818d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Postmark/Model/PostmarkInboundMessage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,8 @@ public class Attachment
public string Name { get; set; }
public string Content { get; set; }
public string ContentType { get; set; }
public string ContentLength { get; set; }
public long ContentLength { get; set; }

public string ContentID { get; set; }
}

Expand Down

0 comments on commit 736818d

Please sign in to comment.