PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopDataModels/Models/IGiftModel.cs

12 lines
230 B
C#
Raw Normal View History

2024-02-06 12:37:25 +04:00
namespace GiftShopDataModels.Models
{
public interface IGiftModel : IId
{
string GiftName { get; }
double Price { get; }
Dictionary<int, (IComponentModel, int)> GiftComponents { get; }
}
}