All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (pull_request) Successful in 7m49s
19 lines
690 B
C#
19 lines
690 B
C#
namespace Domain.Dtos.Sales
|
|
{
|
|
public class DeliveryNoteSummaryDto
|
|
{
|
|
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 string? Observations { get; set; }
|
|
public int PrintCount { get; set; }
|
|
public DateTime CreatedAt { get; set; }
|
|
public DateTime? ModifiedAt { get; set; }
|
|
}
|
|
}
|