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

10 lines
177 B
C#
Raw Normal View History

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