2025-12-29 18:18:04 +00:00
|
|
|
namespace DoliMiddlewareApi.Dtos;
|
|
|
|
|
|
|
|
|
|
public class InvoiceDetailDto
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
public string Number { get; set; }
|
|
|
|
|
public DateTime? Date { get; set; }
|
|
|
|
|
public DateTime? ExpireDate { get; set; }
|
|
|
|
|
public int ClientId { get; set; }
|
2026-05-16 22:01:26 +00:00
|
|
|
public decimal? TotalHt { get; set; }
|
|
|
|
|
public decimal? TotalTax { get; set; }
|
2025-12-29 18:18:04 +00:00
|
|
|
public decimal? Total { get; set; }
|
|
|
|
|
public decimal? RemainToPay { get; set; }
|
|
|
|
|
public string Status { get; set; }
|
2026-02-05 13:33:03 +00:00
|
|
|
public string? NotePublic { get; set; }
|
|
|
|
|
public string? NotePrivate { get; set; }
|
2025-12-29 18:18:04 +00:00
|
|
|
public List<InvoiceLineDto>? Lines { get; set; }
|
|
|
|
|
}
|