All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (pull_request) Successful in 9m37s
close #68
18 lines
659 B
C#
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; }
|
|
}
|
|
}
|