83f51c6a23
Added shopping cart and items Added quotes Refactored relatinoships Migrated changes Refactored cqrs commands and queries Refactored mappings
17 lines
333 B
C#
17 lines
333 B
C#
namespace LiteCharms.Models;
|
|
|
|
public class ShoppingCartItem
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public Guid ShoppingCartId { get; set; }
|
|
|
|
public Guid ProductPriceId { get; set; }
|
|
|
|
public DateTimeOffset CreatedAt { get; set; }
|
|
|
|
public DateTimeOffset UpdatedAt { get; set; }
|
|
|
|
public int Quantity { get; set; }
|
|
}
|