18 lines
388 B
C#
18 lines
388 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace Demo3.Models;
|
|||
|
|
|||
|
public partial class OrderProduct
|
|||
|
{
|
|||
|
public int Orderid { get; set; }
|
|||
|
|
|||
|
public string Productarticlenumber { get; set; } = null!;
|
|||
|
|
|||
|
public int Count { get; set; }
|
|||
|
|
|||
|
public virtual Order Order { get; set; } = null!;
|
|||
|
|
|||
|
public virtual Product ProductarticlenumberNavigation { get; set; } = null!;
|
|||
|
}
|