Pibd-22_Presnyakova.V.V_Jew.../JewelryStoreDataModels/Models/IJewelModel.cs
2023-02-05 18:55:08 +04:00

17 lines
388 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
using System.Threading.Tasks;
namespace JewelryStoreDataModels.Models
{
public interface IJewelModel : IId
{
string JewelName { get; }
double Price { get; }
Dictionary<int, (IComponentModel, int)> JewelComponents { get; }
}
}