forked from sanchezvem/PyroFetes
Creating DTO of DeliveryNote with flattening
This commit is contained in:
15
PyroFetes/DTO/DeliveryNote/Response/GetDeliveryNoteDto.cs
Normal file
15
PyroFetes/DTO/DeliveryNote/Response/GetDeliveryNoteDto.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
namespace PyroFetes.DTO.DeliveryNote.Response;
|
||||
|
||||
public class GetDeliveryNoteDto
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string? TrackingNumber { get; set; }
|
||||
public DateOnly EstimateDeliveryDate { get; set; }
|
||||
public DateOnly ExpeditionDate { get; set; }
|
||||
public DateOnly? RealDeliveryDate { get; set; }
|
||||
|
||||
public int DeliverId { get; set; }
|
||||
public string? DeliverTransporter { get; set; }
|
||||
|
||||
public List<GetProductDeliveryDto> Products { get; set; }
|
||||
}
|
Reference in New Issue
Block a user