You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ProductImages.cs 331B

2 years ago
123456789101112
  1. using Karsha_Site.Domain.Entities.Commons;
  2. namespace Karsha_Site.Domain.Entities.Products
  3. {
  4. public class ProductImages : BaseEntity
  5. {
  6. public virtual Product Product { get; set; }
  7. public int ProductID { get; set; }
  8. public string Src { get; set; }
  9. public bool IsMain { get; set; }
  10. }
  11. }