13 lines
267 B
C#
13 lines
267 B
C#
namespace LiteCharms.Features.TechShop.ShoppingCarts.Models;
|
|
|
|
public class ShoppingCartPackage
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public DateTime CreatedAt { get; set; }
|
|
|
|
public Guid ShoppingCartId { get; set; }
|
|
|
|
public Guid PackageId { get; set; }
|
|
}
|