blob: 071da50aa6ff775e830081b6334f56342e4e6e83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
using Newtonsoft.Json;
namespace SendGrid.Helpers.Mail
{
public class Ganalytics
{
[JsonProperty(PropertyName = "enable")]
public bool? Enable { get; set; }
[JsonProperty(PropertyName = "utm_source")]
public string UtmSource { get; set; }
[JsonProperty(PropertyName = "utm_medium")]
public string UtmMedium { get; set; }
[JsonProperty(PropertyName = "utm_term")]
public string UtmTerm { get; set; }
[JsonProperty(PropertyName = "utm_content")]
public string UtmContent { get; set; }
[JsonProperty(PropertyName = "utm_campaign")]
public string UtmCampaign { get; set; }
}
}
|