una cosa más hecha

This commit is contained in:
2025-01-25 00:20:47 -03:00
parent 2b481e2ae2
commit f750ecc77e
10 changed files with 249 additions and 6 deletions

View File

@@ -0,0 +1,12 @@
namespace Entidades.Dto;
public class VentasDto {
public long Id { get; set; }
public decimal Monto { get; set; }
public string Divisa { get; set; }="";
public string Ubicacion { get; set; }="";
public string NombreVendedor { get; set; }="";
public long IdVendedor { get; set; }
public string NombreComprador { get; set; }="";
public long IdComprador { get; set; }
public string Estado { get; set; }="";
}