2022-05-09 14:41:15 -07:00
|
|
|
namespace Core.Entities
|
|
|
|
{
|
2022-05-09 17:07:59 -07:00
|
|
|
public class Product : BaseEntity
|
2022-05-09 14:41:15 -07:00
|
|
|
{
|
|
|
|
public string Name { get; set; }
|
2022-05-09 17:07:59 -07:00
|
|
|
public string Description { get; set; }
|
|
|
|
|
|
|
|
public decimal Price { get; set; }
|
|
|
|
|
|
|
|
public string PictureUrl { get; set; }
|
|
|
|
|
|
|
|
public ProductType ProductType { get; set; }
|
|
|
|
|
|
|
|
public int ProductTypeId { get; set; }
|
|
|
|
|
|
|
|
public ProductBrand ProductBrand { get; set; }
|
|
|
|
|
|
|
|
public int ProductBrandId { get; set; }
|
2022-05-09 14:41:15 -07:00
|
|
|
}
|
|
|
|
}
|