16 lines
492 B
C#
16 lines
492 B
C#
using System.Collections.Generic;
|
|
using System.Runtime;
|
|
using AAIntegration.SimmonsBank.API.Services;
|
|
|
|
namespace AAIntegration.SimmonsBank.API.Models.Transactions;
|
|
|
|
public class TransactionCreate
|
|
{
|
|
public DateTime Date { get; set; }
|
|
public string ExternalId { get; set; }
|
|
public string Description { get; set; }
|
|
public int? DebitAccount { get; set; }
|
|
public int? CreditAccount { get; set; }
|
|
public decimal Amount { get; set; }
|
|
public bool IsPending { get; set; }
|
|
} |