10 lines
230 B
C#
10 lines
230 B
C#
namespace WebVentaCoche.ViewModels
|
|
{
|
|
public class SalesViewModel
|
|
{
|
|
public string ProductName { get; set; } = null!;
|
|
public string Month { get; set; } = null!;
|
|
public int Units { get; set; }
|
|
}
|
|
}
|