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

10 lines
177 B
C#

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