Files
compabetoOG/database/modelos/Cuenta.cs
T
2024-01-22 02:50:41 -06:00

29 lines
754 B
C#

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace compabetov2.database.modelos
{
public class Cuenta
{
public int id;
public decimal total;
public string fecha;
public string estado;
public string descripcion;
public string cliente;
public Cuenta(decimal total = 0, string fecha = "", string estado = "", string descripcion = "", string cliente = "",int id = -1) {
this.id = id;
this.total = total;
this.fecha = fecha;
this.estado = estado;
this.descripcion = descripcion;
this.cliente = cliente;
}
}
}