Computer_Hardware_Store/HardwareShop/HardwareShopContracts/SearchModels/ComponentSearchModel.cs

15 lines
257 B
C#
Raw Normal View History


2023-04-01 12:50:44 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HardwareShopContracts.SearchModels
2023-04-01 12:50:44 +04:00
{
public class ComponentSearchModel
{
public int? Id { get; set; }
}
}