16 lines
473 B
C#
16 lines
473 B
C#
namespace DoliMiddlewareApi.Dtos.Dolibarr;
|
|
|
|
public class BankLineResponse
|
|
{
|
|
public string? id { get; set; }
|
|
public string? rowid { get; set; }
|
|
public string? label { get; set; }
|
|
public double? amount { get; set; }
|
|
public long? dateo { get; set; }
|
|
public long? datev { get; set; }
|
|
public string? fk_account { get; set; }
|
|
public string? num_releve { get; set; }
|
|
public string? type { get; set; }
|
|
public string? num_chq { get; set; }
|
|
}
|