12 lines
314 B
C#
12 lines
314 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; }
|
|
public User Owner { get; set; }
|
|
} |