21 lines
460 B
C#
21 lines
460 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace VentaUniformes.Application.VentasView
|
|
{
|
|
public class LineVentasViewModel
|
|
{
|
|
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string Description { get; set; }
|
|
public float Price { get; set; }
|
|
public int Cantidad { get; set; }
|
|
|
|
|
|
}
|
|
}
|