Files
ISEbd-21_Koscheev.M.S.Softw…/SoftwareInstallation/SoftwareInstallationDataModels/IComponentModel.cs
2023-02-06 16:15:16 +04:00

8 lines
176 B
C#

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