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

9 lines
178 B
C#
Raw Normal View History

2023-02-16 08:52:03 +04:00
namespace PizzeriaContracts.SearchModels
{
public class PizzaSearchModel
{
public int? Id { get; set; }
public string? PizzaName { get; set; }
}
}