16 lines
474 B
C#
16 lines
474 B
C#
namespace DoliMiddlewareApi.Dtos.query;
|
|
|
|
public class BankAccountDto
|
|
{
|
|
public int Id { get; set; }
|
|
public required string Label { get; set; }
|
|
public string? Ref { get; set; }
|
|
public string? AccountNumber { get; set; }
|
|
public string? Iban { get; set; }
|
|
public string? Bic { get; set; }
|
|
public string? Bank { get; set; }
|
|
public string? CurrencyCode { get; set; }
|
|
public double Balance { get; set; }
|
|
public bool IsClosed { get; set; }
|
|
}
|