dolibarr-bff/DoliMiddlewareApi/Dtos/query/InvoiceDto.cs

16 lines
395 B
C#
Raw Normal View History

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; }
public string Status { get; set; }
2025-12-29 15:37:46 +00:00
}