diff options
Diffstat (limited to 'src/SendGrid/Helpers/Mail/Model/Ganalytics.cs')
-rw-r--r-- | src/SendGrid/Helpers/Mail/Model/Ganalytics.cs | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/SendGrid/Helpers/Mail/Model/Ganalytics.cs b/src/SendGrid/Helpers/Mail/Model/Ganalytics.cs new file mode 100644 index 0000000..071da50 --- /dev/null +++ b/src/SendGrid/Helpers/Mail/Model/Ganalytics.cs @@ -0,0 +1,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; } + } +}
\ No newline at end of file |