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

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

        [JsonProperty(PropertyName = "enable_text")]
        public bool? EnableText { get; set; }
    }
}