PIbd-21_Zaharchenko_M.I._Pi.../Pizzeria/PizzeriaContracts/SearchModels/SupplySearchModel.cs

15 lines
294 B
C#
Raw Normal View History

2023-03-22 22:07:34 +04:00
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; }
}
}