Skip to content

Commit

Permalink
Merge branch 'release/1.1.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
belidzs committed Jun 29, 2020
2 parents 2120efc + 4f2b708 commit 5c6be64
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Mailgun.Models.SignedEvent/EventDetails/Message.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class Message
{
public Headers Headers { get; set; }

public List<string> Attachments { get; set; }
public List<Attachment> Attachments { get; set; }

public List<string> Recipients { get; set; }

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
// <copyright file="Attachment.cs" company="Balazs Keresztury">
// Copyright (c) Balazs Keresztury. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
// </copyright>

namespace Mailgun.Models.SignedEvent.EventDetails.MessageDetails
{
public class Attachment
{
public int Size { get; set; }

public string ContentType { get; set; }

public string Filename { get; set; }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Authors>Balazs Keresztury</Authors>
<Copyright>Copyright (c) 2020 Balazs Keresztury</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Version>1.1.0</Version>
<Version>1.1.1</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageProjectUrl>https://github.com/belidzs/Mailgun.Models.SignedEvent</PackageProjectUrl>
<RepositoryUrl>https://github.com/belidzs/Mailgun.Models.SignedEvent</RepositoryUrl>
Expand Down

0 comments on commit 5c6be64

Please sign in to comment.