-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
new fields bill.customerPhone & bill.extras
- Loading branch information
1 parent
d319300
commit 2872d97
Showing
4 changed files
with
17 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,19 @@ | ||
namespace WeBirr | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace WeBirr | ||
{ | ||
public class Bill | ||
{ | ||
public string customerCode { get; set; } | ||
public string customerName { get; set; } | ||
public String customerPhone { get; set; } | ||
public string billReference { get; set; } | ||
public string time { get; set; } | ||
public string description { get; set; } | ||
public string amount { get; set; } | ||
public string merchantID { get; set; } | ||
public Dictionary<string, string> extras { get; set; } = new Dictionary<string, string>(); | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters