Rebadge the rest of the files

This commit is contained in:
lumijiez
2025-06-03 18:24:40 +03:00
parent 1b6f69fcf9
commit 6a675ac111
77 changed files with 5931 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
using Imprink.Domain.Entities.Orders;
namespace Imprink.Domain.Entities.Product;
public class Product : EntityBase
{
public required string Name { get; set; }
public string? Description { get; set; }
public required decimal BasePrice { get; set; }
public required bool IsCustomizable { get; set; }
public required bool IsActive { get; set; }
public string? ImageUrl { get; set; }
public Guid? CategoryId { get; set; }
public virtual required Category Category { get; set; }
public virtual ICollection<ProductVariant> ProductVariants { get; set; } = new List<ProductVariant>();
public virtual ICollection<OrderItem> OrderItems { get; set; } = new List<OrderItem>();
}