18 lines
417 B
C#
18 lines
417 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace demo_trade.Data.RemoteData.Entity;
|
|
|
|
public partial class Orderproduct
|
|
{
|
|
public int Orderid { get; set; }
|
|
|
|
public string Productarticlenumber { get; set; } = null!;
|
|
|
|
public int? ProductCount { get; set; }
|
|
|
|
public virtual Order Order { get; set; } = null!;
|
|
|
|
public virtual Product ProductarticlenumberNavigation { get; set; } = null!;
|
|
}
|