banking-bot/BankingBot/Models/Transaction.cs
2017-02-13 23:27:36 +00:00

18 lines
348 B
C#

using BankingBot.Enums;
using System;
namespace BankingBot.Models
{
public class Transaction
{
public decimal Amount { get; set; }
public TransactionType Type { get; set; }
public string Description { get; set; }
public DateTime Date { get; set; }
public bool IsPending { get; set; }
}
}