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

17 lines
323 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 IComponentModel : IId
{
string ComponentName { get; }
double Cost { get; }
}
}