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

15 lines
281 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GiftShopDataModels.Models
{
public interface IComponentModel: IId
{
string ComponentName { get; }
double Cost { get; }
}
}