19 lines
381 B
C#
19 lines
381 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CandyHouseContracts.ViewModels;
|
|
|
|
public class SaleProductViewModel
|
|
{
|
|
public required string ProductId { get; set; }
|
|
|
|
public required string ProductName { get; set; }
|
|
|
|
public int Count { get; set; }
|
|
|
|
public double Price { get; set; }
|
|
}
|