Skip to content

Commit

Permalink
Default TemplateId to a nullable value, instead of 0
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Theken committed Nov 7, 2018
1 parent cb7a945 commit 96246a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Postmark/Model/TemplatedPostmarkMessage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public TemplatedPostmarkMessage()
/// The template to use when sending this message. Either this or the TemplateAlias are required
/// when sending using a template. TemplateId takes precendent when both are specified.
/// </summary>
public long TemplateId { get; set; }
public long? TemplateId { get; set; }

///<summary>
/// The alias of the template to use. Either this value, or the TemplateId are required
Expand Down

0 comments on commit 96246a7

Please sign in to comment.