PIbd-21_Zaharchenko_M.I._Pi.../Pizzeria/PizzeriaContracts/SearchModels/SupplySearchModel.cs
2023-03-22 21:07:34 +03:00

15 lines
294 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PizzeriaContracts.SearchModels
{
public class SupplySearchModel
{
public int? PizzaId { get; set; }
public int? Count { get; set; }
}
}