15 lines
438 B
C#
15 lines
438 B
C#
namespace DoliMiddlewareApi.Dtos.command;
|
|
|
|
public class UpdateBankAccountDto
|
|
{
|
|
public string? Label { get; set; }
|
|
public string? Ref { get; set; }
|
|
public int? Type { get; set; }
|
|
public string? CurrencyCode { get; set; }
|
|
public int? CountryId { get; set; }
|
|
public string? AccountNumber { get; set; }
|
|
public string? Iban { get; set; }
|
|
public string? Bic { get; set; }
|
|
public string? Bank { get; set; }
|
|
}
|