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

10 lines
187 B
C#
Raw Normal View History

2023-03-31 19:55:55 +04:00
namespace GiftShopContracts.SearchModels
{
public class ComponentSearchModel
{
public int? Id { get; set; }
public string? ComponentName { get; set; }
}
}