16 lines
478 B
C#
16 lines
478 B
C#
|
|
namespace DoliMiddlewareApi.Dtos.Dolibarr;
|
||
|
|
|
||
|
|
public class BankAccountResponse
|
||
|
|
{
|
||
|
|
public string? id { get; set; }
|
||
|
|
public string? @ref { get; set; }
|
||
|
|
public string? label { get; set; }
|
||
|
|
public string? number { get; set; }
|
||
|
|
public string? iban_prefix { get; set; }
|
||
|
|
public string? bic { get; set; }
|
||
|
|
public string? currency_code { get; set; }
|
||
|
|
public string? bank { get; set; }
|
||
|
|
public double? solde { get; set; }
|
||
|
|
public string? clos { get; set; }
|
||
|
|
}
|