summaryrefslogtreecommitdiffstats
path: root/SendGrid/SendGrid/Client.cs
diff options
context:
space:
mode:
Diffstat (limited to 'SendGrid/SendGrid/Client.cs')
-rw-r--r--SendGrid/SendGrid/Client.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/SendGrid/SendGrid/Client.cs b/SendGrid/SendGrid/Client.cs
index dc45b85..0b5383e 100644
--- a/SendGrid/SendGrid/Client.cs
+++ b/SendGrid/SendGrid/Client.cs
@@ -14,6 +14,7 @@ namespace SendGrid
{
private string _apiKey;
public APIKeys ApiKeys;
+ public UnsubscribeGroups UnsubscribeGroups;
public string Version;
private Uri _baseUri;
private const string MediaType = "application/json";
@@ -33,6 +34,7 @@ namespace SendGrid
_apiKey = apiKey;
Version = Assembly.GetExecutingAssembly().GetName().Version.ToString();
ApiKeys = new APIKeys(this);
+ UnsubscribeGroups = new UnsubscribeGroups(this);
}
/// <summary>