2024-03-15 21:35:24 -05:00
|
|
|
namespace AAIntegration.SimmonsBank.API.Models.Accounts;
|
|
|
|
|
|
|
|
public class AccountUpdateRequest
|
|
|
|
{
|
2024-03-19 21:21:27 -05:00
|
|
|
public string? Name { get; set; } = null;
|
|
|
|
public string? Balance { get; set; } = null;
|
|
|
|
public string? ExternalAccountNumber { get; set; } = null;
|
2024-03-15 21:35:24 -05:00
|
|
|
}
|