Add db integration show menuitems

This commit is contained in:
MET18937
2023-06-23 14:52:39 +02:00
parent 9cd1376cfd
commit a51fe08db8
10 changed files with 969 additions and 356 deletions

View File

@ -0,0 +1,11 @@
namespace WebApi.Models
{
public class MenuitemHasAllergie
{
// navigation references Menuitem
public int? MenuItem_IDMenuItem { get; set; }
// navigation references Allergie
public int? Allergie_IDAllergie { get; set; }
}
}