18 lines
348 B
C#
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; }
|
|
}
|
|
}
|