Skip to content

Commit

Permalink
Merge pull request SwedbankPay#1 from icenorge/Add-known-paymentstate…
Browse files Browse the repository at this point in the history
…s-as-consts

Adds known states as constants
  • Loading branch information
johnkors authored Mar 23, 2018
2 parents 42bf237 + 8fe8550 commit cb677f7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ var target = Argument("target", "Pack");
var configuration = Argument("configuration", "Release");
var proj = $"./src/PayEx.Client/PayEx.Client.csproj";

var version = "1.0.0";
var version = "1.0.1";
var outputDir = "./output";

Task("Build")
Expand Down
2 changes: 2 additions & 0 deletions src/PayEx.Client/Models/PaymentStates.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,7 @@
public static class PaymentStates
{
public const string Aborted = "Aborted";
public const string Completed = "Completed";
public const string AwaitingActivity = "AwaitingActivity";
}
}

0 comments on commit cb677f7

Please sign in to comment.