PIbd-21_Zaharchenko_M.I._Pi.../Pizzeria/PizzeriaContracts/SearchModels/ComponentSearchModel.cs
2023-02-16 07:52:03 +03:00

9 lines
186 B
C#

namespace PizzeriaContracts.SearchModels
{
public class ComponentSearchModel
{
public int? Id { get; set; }
public string? ComponentName { get; set; }
}
}