Files
compabetoOG/database/modelos/Merma.cs
T
2024-01-17 23:03:46 -06:00

25 lines
568 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace compabetov2.database.modelos
{
public class Merma
{
public long idMerma;
public string fecha;
public string responsable;
public string razon;
public Merma(long idMerma, string fecha, string responsable, string razon)
{
this.idMerma = idMerma;
this.fecha = fecha;
this.responsable = responsable;
this.razon = razon;
}
}
}