Initial Commit

This commit is contained in:
Andre Beging
2017-09-11 05:46:57 +02:00
parent 20199ef17c
commit 3d2d4851cc
37 changed files with 2513 additions and 0 deletions

19
Model/Enums.cs Normal file
View File

@@ -0,0 +1,19 @@
using System.ComponentModel;
namespace DebtMgr.Model
{
////////////////////////////////////////////////////////////////////////////////////////////////////
/// <summary> Values that represent transaction types. </summary>
///
/// <remarks> Andre Beging, 08.09.2017. </remarks>
////////////////////////////////////////////////////////////////////////////////////////////////////
public enum TransactionType
{
[Description("None")]
None,
[Description("Deposit")]
Deposit,
[Description("Charge")]
Charge
}
}