mirror of
https://github.com/fiodarsazanavets/aspire-13-examples.git
synced 2026-06-20 12:23:14 +00:00
9 lines
184 B
C#
9 lines
184 B
C#
namespace OnlineShop.ApiService.Model;
|
|
|
|
public class OrderItem
|
|
{
|
|
public int OrderId { get; set; }
|
|
public int ProductId { get; set; }
|
|
public int Quantity { get; set; }
|
|
}
|