PIbd-21_Afanasev_S.S_MotorP.../MotorPlant/MotorPlantDataModels/IComponentModel.cs
2024-02-08 01:19:18 +04:00

9 lines
167 B
C#

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