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

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Entidades
{
internal class ProductoPercedero
{
public int MesesHastaConsumoPreferente { get; set; }
public int MesesHastaVencimiento { get; set; }
}
}