Ajout du Modèle du sujet 1

This commit is contained in:
2025-10-02 14:30:54 +02:00
parent 443663d6af
commit 423f4c4a6c
17 changed files with 242 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
using API.Models;
namespace API.Class;
public class Warehouse
{
public int Id {get; set;}
public string Name {get; set;}
public int MaxWeight {get; set;}
public int Current {get; set;}
public int MinWeight {get; set;}
public string Adress { get; set; }
public int ZipCode { get; set; }
public string City { get; set; }
public List<Material> Materials {get; set;}
public List<Movement> MovementsSource { get; set; }
public List<Movement> MovementsDestination { get; set; }
}