13 lines
440 B
C#
13 lines
440 B
C#
|
namespace AAIntegration.SimmonsBank.API.Models.Accounts;
|
||
|
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
using AAIntegration.SimmonsBank.API.Entities;
|
||
|
|
||
|
public class AccountUpdateRequest
|
||
|
{
|
||
|
public string Name { get; set; } = null;
|
||
|
public int? Owner { get; set; } = null;
|
||
|
public string InitialBalance { get; set; } = null;
|
||
|
public int? Currency { get; set; } = null;
|
||
|
public string ExternalAccountNumber { get; set; } = null;
|
||
|
}
|