20 lines
750 B
C#
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; }
|
||
|
|
}
|
||
|
|
}
|