Entidades con sus propiedades sin funciones

This commit is contained in:
Ignacio Jesús Diana
2024-02-24 16:00:39 -03:00
parent 46768f4f1b
commit 712813e8cb
25 changed files with 294 additions and 1 deletions

25
Entidades/Producto.cs Normal file
View File

@@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Entidades
{
internal class Producto
{
public int Id { get; set; }
public string Nombre { get; set; }
public double Precio { get; set; }
public bool Habilitado { get; set; }
private List<Categoria> Categorias { get; set; }
}
}