PIbd-21_Zaharchenko_M.I._Pi.../Pizzeria/PizzeriaContracts/ViewModels/PizzaCount.cs

17 lines
335 B
C#
Raw Normal View History

2023-05-04 08:57:52 +04:00
using PizzeriaDataModels.Models;
using System;
2023-05-03 22:54:42 +04:00
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PizzeriaContracts.ViewModels
{
public class PizzaCount
{
2023-05-04 08:57:52 +04:00
public PizzaViewModel Pizza { get; set; }
2023-05-03 22:54:42 +04:00
public int Count { get; set; } = new();
}
}