Correcting all errors of types, writed, and entities.

This commit is contained in:
2025-10-08 11:10:27 +01:00
parent af92cdc524
commit 0ddf5d380a
13 changed files with 90 additions and 3 deletions

View File

@@ -9,5 +9,8 @@ public class Material
[Required] public int Quantity {get; set;}
[Required] public int WarehouseId {get; set;}
[Required] public Warehouse? Warehouse {get; set;}
public Warehouse? Warehouse {get; set;}
public List<ShowMaterial>? ShowMaterials {get; set;}
public List<MaterialWarehouse>? MaterialWarehouses {get; set;}
}