14 lines
394 B
C#
Raw Normal View History

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 decimal Balance { get; set; }
public string ExternalAccountNumber { get; set; }
}