14 lines
394 B
C#
14 lines
394 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 decimal Balance { get; set; }
|
||
|
public string ExternalAccountNumber { get; set; }
|
||
|
}
|