Creating DTO of Deliver and fixing some typing errors

This commit is contained in:
Cristiano
2025-10-11 01:38:41 +02:00
parent ecd8883d55
commit 37f6460615
6 changed files with 28 additions and 6 deletions

View File

@@ -7,7 +7,6 @@ public class CreateDeliveryNoteDto
public DateOnly ExpeditionDate { get; set; }
public DateOnly RealDeliveryDate { get; set; }
public int DeliverId { get; set; }
public string? DeliverTransporter { get; set; }
public int DelivererId { get; set; }
}

View File

@@ -8,7 +8,6 @@ public class UpdateDeliveryNoteDto
public DateOnly ExpeditionDate { get; set; }
public DateOnly? RealDeliveryDate { get; set; }
public int DeliverId { get; set; }
public string? DeliverTransporter { get; set; }
public int DelivererId { get; set; }
}