PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopDataModels/Models/IGiftModel.cs
Arkadiy Radaev f31982e59f res1
2024-02-06 12:37:25 +04:00

12 lines
230 B
C#

namespace GiftShopDataModels.Models
{
public interface IGiftModel : IId
{
string GiftName { get; }
double Price { get; }
Dictionary<int, (IComponentModel, int)> GiftComponents { get; }
}
}