Skip to content

Commit

Permalink
1.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonseydel committed Feb 26, 2017
1 parent ec6bd5a commit 101d4f3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
6 changes: 4 additions & 2 deletions MailChimp.Net/Models/Report.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
using System.Collections.Generic;

using Newtonsoft.Json;
using MailChimp.Net.Core;

namespace MailChimp.Net.Models
{
Expand Down Expand Up @@ -42,6 +43,7 @@ public Report()
[JsonProperty("campaign_title")]
public string CampaignTitle { get; set; }


[JsonProperty("subject_line")]
public string SubjectLine { get; set; }

Expand Down Expand Up @@ -127,8 +129,8 @@ public Report()
/// Gets or sets the type.
/// </summary>
[JsonProperty("type")]
public string Type { get; set; }

public CampaignType Type { get; set; }
/// <summary>
/// Gets or sets the unsubscribed.
/// </summary>
Expand Down
6 changes: 3 additions & 3 deletions MailChimp.Net/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Brandon Seydel")]
[assembly: AssemblyProduct("MailChimp.Net.V3")]
[assembly: AssemblyCopyright("Copyright © 2016")]
[assembly: AssemblyCopyright("Copyright © 2017")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
[assembly: ComVisible(true)]
[assembly: CLSCompliant(true)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
Expand All @@ -37,5 +37,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.9.0")]
[assembly: AssemblyVersion("1.9.1")]
[assembly: AssemblyFileVersion("1.0.0.0")]

0 comments on commit 101d4f3

Please sign in to comment.