ISEbd-21_Gruzdev_A.P._Compu.../ComputersShop/ComputersShopContracts/SearchModels/ComponentSearchModel.cs
2024-04-12 18:53:03 +04:00

15 lines
308 B
C#

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