falta interfaz venta

This commit is contained in:
2025-01-24 21:31:37 -03:00
parent f8692ccdf0
commit 2b481e2ae2
13 changed files with 457 additions and 15 deletions
+8
View File
@@ -0,0 +1,8 @@
namespace Entidades.Dto;
public class OpcionVentaDto{
public long Id { get; set;}
public decimal Monto { get; set;}
public string Divisa { get; set;} ="";
public bool EnOrden { get; set;}
public bool FueEjercido { get; set; }
}