11 lines
284 B
C#
11 lines
284 B
C#
namespace WildPlumDatabase.Models;
|
|
|
|
public class OrderProduct
|
|
{
|
|
public required string OrderId { get; set; }
|
|
public required string ProductId { get; set; }
|
|
public int Count { get; set; }
|
|
public Order? Order { get; set; }
|
|
public Product? Product { get; set; }
|
|
}
|