Skip to content

Commit fc5f797

Browse files
author
Marcus Bowyer
committed
added parameterless constructor for PostmatesAccount
1 parent b07d6fe commit fc5f797

2 files changed

Lines changed: 11 additions & 4 deletions

File tree

src/Postmates.NET/Model/PostmatesAccount.cs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,18 @@ namespace Postmates.API
1414
/// </summary>
1515
public class PostmatesAccount
1616
{
17+
/// <summary>
18+
/// Constructor.
19+
/// </summary>
20+
public PostmatesAccount()
21+
{
22+
}
23+
1724
/// <summary>
1825
/// Constructor.
1926
/// </summary>
2027
/// <param name="customerId"></param>
21-
/// <param name="secret"></param>
28+
/// <param name="apiKey"></param>
2229
public PostmatesAccount(string customerId, string apiKey)
2330
{
2431
CustomerId = customerId;

src/Postmates.NET/Postmates.NET.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
<Authors>Marcus Bowyer</Authors>
1414
<Company>Loopie.io</Company>
1515
<Product>Postmates.NET</Product>
16-
<Version>1.0.11</Version>
17-
<AssemblyVersion>1.0.11</AssemblyVersion>
18-
<FileVersion>1.0.11</FileVersion>
16+
<Version>1.0.12</Version>
17+
<AssemblyVersion>1.0.12</AssemblyVersion>
18+
<FileVersion>1.0.12</FileVersion>
1919
</PropertyGroup>
2020

2121
<ItemGroup>

0 commit comments

Comments
 (0)