13 lines
348 B
C#
13 lines
348 B
C#
namespace WebVentaCoche.Models
|
|
{
|
|
public class Product
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string? ShortDescription { get; set; }
|
|
public string? LongDescription { get; set; }
|
|
public decimal Price { get; set; }
|
|
public string? ImagePath { get; set; }
|
|
}
|
|
}
|