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; }
+ }
+}