PIbd_23_Valova_A._D._SushiBar/SushiBar/SushiBarContracts/SearchModels/ComponentSearchModel.cs

15 lines
303 B
C#
Raw Normal View History

2024-02-12 15:00:02 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SushiBarContracts.SearchModels
{
public class ComponentSearchModel
{
public int? Id { get; set; }
public string? ComponentName { get; set; }
}
}