21 lines
705 B
C#
21 lines
705 B
C#
|
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; }
|
||
|
}
|