20 lines
424 B
C#
20 lines
424 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace shoe_store.Models;
|
|
|
|
public partial class OrderItem
|
|
{
|
|
public int IdOrderItems { get; set; }
|
|
|
|
public int OrderId { get; set; }
|
|
|
|
public string ProductArticle { get; set; } = null!;
|
|
|
|
public int Quantity { get; set; }
|
|
|
|
public virtual Order Order { get; set; } = null!;
|
|
|
|
public virtual Product ProductArticleNavigation { get; set; } = null!;
|
|
}
|