PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopContracts/SearchModels/ComponentSearchModel.cs

10 lines
187 B
C#
Raw Normal View History

2024-02-06 12:37:25 +04:00
namespace GiftShopContracts.SearchModels
{
public class ComponentSearchModel
{
public int? Id { get; set; }
public string? ComponentName { get; set; }
}
}