ShopOnlineSolution/ShopOnline.Api/Entities/Product.cs

14 lines
377 B
C#
Executable File

namespace ShopOnline.Api.Entities
{
public class Product
{
public int Id { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public string ImageURL { get; set; }
public decimal Price { get; set; }
public int Quantity { get; set; }
public int CategoryId { get; set; }
}
}