21 lines
705 B
C#
Raw Normal View History

2024-04-04 11:03:38 -05:00
using System.Collections.Generic;
using System.Runtime;
using AAIntegration.SimmonsBank.API.Services;
namespace AAIntegration.SimmonsBank.API.Models.Transactions;
public class TransactionDTO
{
public string Id { get; set; }
public string AccountId { get; set; }
public string Type { get; set; }
public decimal? Amount { get; set; }
public decimal? RunningBalance { get; set; }
public DateTime? DatePosted { get; set; }
public DateTime? Date { get; set; }
public DateTime? LastUpdated { get; set; }
public string PendingStatus { get; set; }
public string Memo { get; set; }
public string FilteredMemo { get; set; }
public string DisplayName { get; set; }
}