PIbd-23_Sergunov_M.A._GiftShop/GiftShop/GiftShopContracts/SearchModels/ComponentSearchModel.cs

10 lines
187 B
C#

namespace GiftShopContracts.SearchModels
{
public class ComponentSearchModel
{
public int? Id { get; set; }
public string? ComponentName { get; set; }
}
}