using KernelRecordsMVC.Domain.Enums; namespace KernelRecordsMVC.Models; public class Product { public long ProductId { get; set; } public long ReleaseId { get; set; } public ProductFormat Format { get; set; } public decimal Price { get; set; } public string ProductDescription { get; set; } = null!; public long Stock { get; set; } public Release Release { get; set; } = null!; public ICollection OrderProducts { get; set; } = new List(); public ICollection WishlistProducts { get; set; } = new List(); public ICollection ModificationProducts { get; set; } = new List(); }