PIbd-22_Katysheva_N.E._Pizz.../Pizzeria/PizzeriaContracts/SearchModels/PizzaSearchModel.cs

9 lines
178 B
C#
Raw Normal View History

2024-03-11 00:29:35 +04:00
namespace PizzeriaContracts.SearchModels
{
public class PizzaSearchModel
{
public int? Id { get; set; }
public string? PizzaName { get; set; }
}
}