ProyectoGrupal/dolibarr-bff/DoliMiddlewareApi/Dtos/command/UpdateBankAccountDto.cs

15 lines
438 B
C#
Raw Permalink Normal View History

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; }
}