17 lines
335 B
C#
17 lines
335 B
C#
namespace LiteCharms.Features.MidrandBooks.Orders.Models;
|
|
|
|
public class OrderItem
|
|
{
|
|
public long Id { get; set; }
|
|
|
|
public DateTime CreatedAt { get; set; }
|
|
|
|
public long OrderId { get; set; }
|
|
|
|
public long AuthorBookId { get; set; }
|
|
|
|
public long ProductPriceId { get; set; }
|
|
|
|
public int Quantity { get; set; }
|
|
}
|