Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Product.cs 869B

1234567891011121314151617181920212223242526
  1. using Karsha_Site.Domain.Entinies.Products;
  2. using Karsha_Site.Domain.Entities.Commons;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace Karsha_Site.Domain.Entities.Products
  9. {
  10. public class Product : BaseEntity
  11. {
  12. public string Name { get; set; }
  13. public string Description { get; set; }
  14. public long? Price { get; set; }
  15. public string Code { get; set; }
  16. public bool Displayed { get; set; }
  17. public int ViewCount { get; set; }
  18. public int Inventory { get; set; }
  19. public virtual Category Category { get; set; }
  20. public int CategoryID { get; set; }
  21. public virtual ICollection<ProductImages> ProductImages { get; set; }
  22. public virtual ICollection<ProductFeatures> ProductFeatures { get; set; }
  23. }
  24. }