PIbd-23_Sergunov_M.A._GiftShop/GiftShop/GiftShopDataModels/Models/IComponentModel.cs

10 lines
166 B
C#

namespace GiftShopDataModels.Models
{
public interface IComponentModel : IId
{
string ComponentName { get; }
double Cost { get; }
}
}