From 8420adb2e0c9e88a59e9d4ed8c5d6cf646639482 Mon Sep 17 00:00:00 2001 From: AaronJamesY Date: Mon, 13 Feb 2017 22:32:34 +0000 Subject: [PATCH] Added Transaction model --- BankingBot/BankingBot.csproj | 2 ++ BankingBot/Enums/TransactionType.cs | 12 ++++++++++++ BankingBot/Models/Transaction.cs | 18 ++++++++++++++++++ 3 files changed, 32 insertions(+) create mode 100644 BankingBot/Enums/TransactionType.cs create mode 100644 BankingBot/Models/Transaction.cs diff --git a/BankingBot/BankingBot.csproj b/BankingBot/BankingBot.csproj index 2731ea6..15fd1c5 100644 --- a/BankingBot/BankingBot.csproj +++ b/BankingBot/BankingBot.csproj @@ -67,6 +67,7 @@ + @@ -76,6 +77,7 @@ + diff --git a/BankingBot/Enums/TransactionType.cs b/BankingBot/Enums/TransactionType.cs new file mode 100644 index 0000000..3976738 --- /dev/null +++ b/BankingBot/Enums/TransactionType.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace BankingBot.Enums +{ + public enum TransactionType + { + } +} diff --git a/BankingBot/Models/Transaction.cs b/BankingBot/Models/Transaction.cs new file mode 100644 index 0000000..ffc2840 --- /dev/null +++ b/BankingBot/Models/Transaction.cs @@ -0,0 +1,18 @@ +using BankingBot.Enums; +using System; + +namespace BankingBot.Models +{ + public class Transaction + { + public Account Account { get; set; } + + public decimal Amount { get; set; } + + public TransactionType Type { get; set; } + + public string Description { get; set; } + + public DateTime Date { get; set; } + } +}