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

10 lines
187 B
C#
Raw Normal View History

2024-02-28 01:32:56 +04:00
namespace PizzeriaContracts.SearchModels
{
public class ComponentSearchModel
{
public int? Id { get; set; }
public string? ComponentName { get; set; }
}
}