mirror of
https://github.com/yummy4friends/y4f.git
synced 2025-07-17 19:33:17 +02:00
12 lines
242 B
C#
12 lines
242 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace WebApi.Models;
|
|
|
|
public partial class BestellungspositionHasMenuitem
|
|
{
|
|
public int? Bestellungsposition_IDBestellung { get; set; }
|
|
|
|
public int? MenuItem_IDMenuItem { get; set; }
|
|
}
|