phronCare/Domain/Dtos/Sales/SalesDocumentDeliveryNoteOperationSnapshotDto.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

20 lines
750 B
C#

namespace Domain.Dtos.Sales
{
public class SalesDocumentDeliveryNoteOperationSnapshotDto
{
public int DeliveryNoteId { get; set; }
public string DeliveryNoteNumber { get; set; } = string.Empty;
public int? QuoteId { get; set; }
public string? QuoteNumber { get; set; }
public int CustomerId { get; set; }
public string CustomerName { get; set; } = string.Empty;
public DateTime IssueDate { get; set; }
public decimal Amount { get; set; }
public string? Patient { get; set; }
public string? Doctor { get; set; }
public string? Hospital { get; set; }
public DateTime? SurgeryDate { get; set; }
public string? Coverage { get; set; }
}
}