ISEbd-21_Koscheev.M.S.Softw.../SoftwareInstallation/SoftwareInstallationDataModels/IComponentModel.cs

8 lines
176 B
C#

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