PIbd-22_Karamushko_M_K_Pizz.../Pizzeria/PizzeriaContracts/SearchModels/ComponentSearchModel.cs

16 lines
304 B
C#
Raw Normal View History

2023-02-13 20:43:19 +04:00
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; }
}
}