2024-03-15 21:35:24 -05:00
|
|
|
namespace AAIntegration.SimmonsBank.API.Models.Accounts;
|
|
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
using AAIntegration.SimmonsBank.API.Entities;
|
|
|
|
|
|
|
|
public class AccountCreateRequest
|
|
|
|
{
|
|
|
|
public string Name { get; set; }
|
|
|
|
public string InitialBalance { get; set; }
|
|
|
|
public int Currency { get; set; }
|
|
|
|
public string ExternalAccountNumber { get; set; }
|
2024-03-19 22:39:11 -05:00
|
|
|
public int Owner { get; set; }
|
2024-03-15 21:35:24 -05:00
|
|
|
}
|