Skip to content

Commit

Permalink
added parameterless constructor for PostmatesAccount
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcus Bowyer committed Feb 12, 2020
1 parent b07d6fe commit fc5f797
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
9 changes: 8 additions & 1 deletion src/Postmates.NET/Model/PostmatesAccount.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,18 @@ namespace Postmates.API
/// </summary>
public class PostmatesAccount
{
/// <summary>
/// Constructor.
/// </summary>
public PostmatesAccount()
{
}

/// <summary>
/// Constructor.
/// </summary>
/// <param name="customerId"></param>
/// <param name="secret"></param>
/// <param name="apiKey"></param>
public PostmatesAccount(string customerId, string apiKey)
{
CustomerId = customerId;
Expand Down
6 changes: 3 additions & 3 deletions src/Postmates.NET/Postmates.NET.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
<Authors>Marcus Bowyer</Authors>
<Company>Loopie.io</Company>
<Product>Postmates.NET</Product>
<Version>1.0.11</Version>
<AssemblyVersion>1.0.11</AssemblyVersion>
<FileVersion>1.0.11</FileVersion>
<Version>1.0.12</Version>
<AssemblyVersion>1.0.12</AssemblyVersion>
<FileVersion>1.0.12</FileVersion>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit fc5f797

Please sign in to comment.