PIbd-23_Yakobchuk_S.V._Moto.../MotorPlant/MotorPlantDataModels/IComponentModel.cs

9 lines
167 B
C#

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