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

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

        [JsonProperty(PropertyName = "text")]
        public string Text { get; set; }

        [JsonProperty(PropertyName = "html")]
        public string Html { get; set; }

        [JsonProperty(PropertyName = "substitution_tag")]
        public string SubstitutionTag { get; set; }
    }
}