2025-12-29 18:18:04 +00:00
|
|
|
namespace DoliMiddlewareApi.Dtos.Dolibarr;
|
2025-12-29 15:37:46 +00:00
|
|
|
|
|
|
|
|
public class InvoiceResponse
|
|
|
|
|
{
|
|
|
|
|
public string? id { get; set; }
|
|
|
|
|
public string? @ref { get; set; }
|
|
|
|
|
public long? date { get; set; }
|
|
|
|
|
|
|
|
|
|
public long? date_lim_reglement { get; set; }
|
|
|
|
|
|
|
|
|
|
public string? socid { get; set; }
|
|
|
|
|
public string? total_ttc { get; set; }
|
|
|
|
|
public string? remaintopay { get; set; }
|
|
|
|
|
public string? statut { get; set; }
|
|
|
|
|
}
|