phronCare/Domain/Dtos/Sales/SalesDocumentDeliveryNoteCandidateDto.cs
leandro 1fcd31080b
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (pull_request) Successful in 9m37s
feat(sales): refine sales document creation from delivery notes
close #68
2026-06-06 13:54:41 -03:00

18 lines
659 B
C#

namespace Domain.Dtos.Sales
{
public class SalesDocumentDeliveryNoteCandidateDto
{
public int Id { get; set; }
public string DeliveryNoteNumber { get; set; } = string.Empty;
public int? QuoteId { get; set; }
public string? QuoteNumber { get; set; }
public DateTime IssueDate { get; set; }
public int CustomerId { get; set; }
public string CustomerName { get; set; } = string.Empty;
public string Status { get; set; } = string.Empty;
public int ItemCount { get; set; }
public decimal ApprovedAmount { get; set; }
public string? ExtraInfoJson { get; set; }
}
}