-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from cmdotcom/develop
added filter to from addresses and from domains, added google analyti…
- Loading branch information
Showing
3 changed files
with
42 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
|
||
namespace CM.Email.Sdk.Models | ||
{ | ||
public class GoogleAnalyticsTracking | ||
{ | ||
/// <summary> | ||
/// The source to put in the utm_source tag | ||
/// </summary> | ||
public string Source { get; set; } | ||
|
||
/// <summary> | ||
/// The medium to put in the utm_medium tag | ||
/// </summary> | ||
public string Medium { get; set; } | ||
|
||
/// <summary> | ||
/// The campaign to put in the utm_campaign tag | ||
/// </summary> | ||
public string Campaign { get; set; } | ||
} | ||
} |