19 lines
659 B
C#
19 lines
659 B
C#
|
|
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; }
|
||
|
|
public string? ClientName { get; set; }
|
||
|
|
public decimal? TotalHt { get; set; }
|
||
|
|
public decimal? TotalTax { get; set; }
|
||
|
|
public decimal? Total { get; set; }
|
||
|
|
public decimal? RemainToPay { get; set; }
|
||
|
|
public string Status { get; set; }
|
||
|
|
public string? NotePublic { get; set; }
|
||
|
|
public string? NotePrivate { get; set; }
|
||
|
|
public List<InvoiceLineDto>? Lines { get; set; }
|
||
|
|
}
|