2024-03-15 21:35:24 -05:00
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
|
namespace AAIntegration.SimmonsBank.API.Entities;
|
|
|
|
|
|
|
|
public class Account
|
|
|
|
{
|
|
|
|
public int Id { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public decimal Balance { get; set; }
|
|
|
|
public string ExternalAccountNumber { get; set; }
|
2024-03-19 21:28:00 -05:00
|
|
|
public User Owner { get; set; }
|
2024-03-15 21:35:24 -05:00
|
|
|
}
|