20 lines
671 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 int Id { get; set; }
public string Name { get; set; }
public DateTime LastActivity { get; set; }
public decimal VirtualBalance { get; set; }
public decimal Balance { get; set; }
public DateTime CreatedOn { get; set; }
public decimal InitialBalance { get; set; }
public int CurrencyId { get; set; }
public string ExternalAccountNumber { get; set; }
public List<Envelope> Envelopes { get; set; }
}