11 lines
278 B
C#
11 lines
278 B
C#
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; }
|
|
} |