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.

ProductFeatures.cs 342B

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