Skip to content

Commit 101d4f3

Browse files
committed
1.9.1
1 parent ec6bd5a commit 101d4f3

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

MailChimp.Net/Models/Report.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
using System.Collections.Generic;
88

99
using Newtonsoft.Json;
10+
using MailChimp.Net.Core;
1011

1112
namespace MailChimp.Net.Models
1213
{
@@ -42,6 +43,7 @@ public Report()
4243
[JsonProperty("campaign_title")]
4344
public string CampaignTitle { get; set; }
4445

46+
4547
[JsonProperty("subject_line")]
4648
public string SubjectLine { get; set; }
4749

@@ -127,8 +129,8 @@ public Report()
127129
/// Gets or sets the type.
128130
/// </summary>
129131
[JsonProperty("type")]
130-
public string Type { get; set; }
131-
132+
public CampaignType Type { get; set; }
133+
132134
/// <summary>
133135
/// Gets or sets the unsubscribed.
134136
/// </summary>

MailChimp.Net/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@
1616
[assembly: AssemblyConfiguration("")]
1717
[assembly: AssemblyCompany("Brandon Seydel")]
1818
[assembly: AssemblyProduct("MailChimp.Net.V3")]
19-
[assembly: AssemblyCopyright("Copyright © 2016")]
19+
[assembly: AssemblyCopyright("Copyright © 2017")]
2020
[assembly: AssemblyTrademark("")]
2121
[assembly: AssemblyCulture("")]
2222

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

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

0 commit comments

Comments
 (0)