15 lines
286 B
C#
Raw Normal View History

2023-01-29 18:03:10 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputerShopDataModels.Models
{
2023-03-26 20:47:20 +04:00
public interface IComponentModel : IId
2023-01-29 18:03:10 +04:00
{
string ComponentName { get; }
double Cost { get; }
}
}