summaryrefslogtreecommitdiffstats
path: root/src/SendGrid/Helpers/Mail/Model/SpamCheck.cs
blob: 8b1abf4249b03b3ca96efd64cbcc337cdfc3f1d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using Newtonsoft.Json;

namespace SendGrid.Helpers.Mail
{
    public class SpamCheck
    {
        [JsonProperty(PropertyName = "enable")]
        public bool? Enable { get; set; }

        [JsonProperty(PropertyName = "threshold")]
        public int? Threshold { get; set; }

        [JsonProperty(PropertyName = "post_to_url")]
        public string PostToUrl { get; set; }
    }
}