PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopContracts/SearchModels/ComponentSearchModel.cs
Arkadiy Radaev f31982e59f res1
2024-02-06 12:37:25 +04:00

10 lines
187 B
C#

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