PIbd-22_Karamushko_M_K_Pizz.../Pizzeria/PizzeriaContracts/SearchModels/ComponentSearchModel.cs
2023-02-13 19:43:19 +03:00

16 lines
304 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PizzeriaContracts.SearchModels
{
public class ComponentSearchModel
{
public int? Id { get; set; }
public string? ComponentName { get; set; }
}
}