forked from sanchezvem/PyroFetes
Creating DTO of ProductDelivery with flattening
This commit is contained in:
@@ -10,5 +10,4 @@ public class CreateDeliveryNoteDto
|
||||
public int DeliverId { get; set; }
|
||||
public string? DeliverTransporter { get; set; }
|
||||
|
||||
public List<GetProductDeliveryDto> Products { get; set; }
|
||||
}
|
@@ -11,5 +11,4 @@ public class UpdateDeliveryNoteDto
|
||||
public int DeliverId { get; set; }
|
||||
public string? DeliverTransporter { get; set; }
|
||||
|
||||
public List<GetProductDeliveryDto> Products { get; set; }
|
||||
}
|
@@ -1,3 +1,5 @@
|
||||
using PyroFetes.DTO.ProductDelivery.Response;
|
||||
|
||||
namespace PyroFetes.DTO.DeliveryNote.Response;
|
||||
|
||||
public class GetDeliveryNoteDto
|
||||
|
Reference in New Issue
Block a user