12 lines
441 B
C#
12 lines
441 B
C#
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; }="";
|
|
} |