PIbd-22_Razzhivin_A.S._Gift.../GiftShop/GiftShopDataModels/Models/IGiftModel.cs
2023-04-30 02:34:19 +04:00

16 lines
344 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GiftShopDataModels.Models
{
public interface IGiftModel: IId
{
string GiftName { get; }
double Price { get; }
Dictionary<int, (IComponentModel, int)> GiftComponents { get; }
}
}