12 lines
230 B
C#
12 lines
230 B
C#
|
namespace GiftShopDataModels.Models
|
|||
|
{
|
|||
|
public interface IGiftModel : IId
|
|||
|
{
|
|||
|
string GiftName { get; }
|
|||
|
|
|||
|
double Price { get; }
|
|||
|
|
|||
|
Dictionary<int, (IComponentModel, int)> GiftComponents { get; }
|
|||
|
}
|
|||
|
}
|