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

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

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