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

8 lines
176 B
C#
Raw Permalink Normal View History

2023-02-06 16:15:16 +04:00
namespace SoftwareInstallationDataModels.Models
{
public interface IComponentModel : IId
{
string ComponentName { get; }
double Cost { get; }
}
}