19 lines
627 B
C#
19 lines
627 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Text.Json.Serialization;
|
|
using AAIntegration.SimmonsBank.API.Entities;
|
|
|
|
namespace AAIntegration.SimmonsBank.API.Models.Accounts;
|
|
|
|
public class AccountDTO
|
|
{
|
|
public string Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string Numbers { get; set; }
|
|
public decimal? Balance { get; set; }
|
|
public decimal? AvailableBalance { get; set; }
|
|
public string AccountType { get; set; }
|
|
public string AccountSubType { get; set; }
|
|
public DateTime? PaymentDueDate { get; set; }
|
|
public decimal? PaymentDueAmount { get; set; }
|
|
} |