Aparyan.ISE-22.MotorPlant/MotorPlantDataModels/Models/IComponentModel.cs

9 lines
167 B
C#

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