15 lines
298 B
C#
15 lines
298 B
C#
namespace LiteCharms.Features.Shop.CartPackages.Models;
|
|
|
|
public class PackageItem
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public Guid PackageId { get; set; }
|
|
|
|
public Guid ProductPriceId { get; set; }
|
|
|
|
public DateTimeOffset CreatedAt { get; set; }
|
|
|
|
public bool Active { get; set; }
|
|
}
|