2025-12-29 15:37:46 +00:00
|
|
|
namespace DoliMiddlewareApi.Dtos;
|
|
|
|
|
|
|
|
|
|
public class InvoiceDto
|
|
|
|
|
{
|
|
|
|
|
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; }
|
|
|
|
|
public decimal? Total { get; set; }
|
|
|
|
|
public decimal? RemainToPay { get; set; }
|
2025-12-29 15:58:53 +00:00
|
|
|
public string Status { get; set; }
|
2026-01-30 15:52:28 +00:00
|
|
|
public string? ClientName { get; set; }
|
2026-02-03 15:42:32 +00:00
|
|
|
public string? note_public { get; set; }
|
|
|
|
|
public string? note_private { get; set; }
|
2025-12-29 15:37:46 +00:00
|
|
|
}
|