Added last endpoints for delivery Note

This commit is contained in:
Cristiano
2025-11-14 18:11:54 +01:00
parent d7cf245d35
commit 20bbccf883
7 changed files with 110 additions and 3 deletions

View File

@@ -6,7 +6,7 @@ public class CreateSupplierDto
public string? Email { get; set; }
public string? Phone { get; set; }
public string? Address { get; set; }
public int ZipCode { get; set; }
public string? ZipCode { get; set; }
public string? City { get; set; }
public int DeliveryDelay { get; set; }
}

View File

@@ -7,7 +7,7 @@ public class UpdateSupplierDto
public string? Email { get; set; }
public string? Phone { get; set; }
public string? Address { get; set; }
public int ZipCode { get; set; }
public string? ZipCode { get; set; }
public string? City { get; set; }
public int DeliveryDelay { get; set; }
}