PIbd-23_Sergunov_M.A._GiftShop/GiftShop/GiftShopDataModels/Models/IGiftModel.cs

12 lines
230 B
C#

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