banking-bot/BankingBot/Models/Transaction.cs
2017-02-13 22:32:34 +00:00

18 lines
349 B
C#

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