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

10 lines
177 B
C#

namespace GiftShopContracts.SearchModels
{
public class GiftSearchModel
{
public int? Id { get; set; }
public string? GiftName { get; set; }
}
}