9 lines
174 B
C#
9 lines
174 B
C#
|
namespace SoftwareInstallationDataModels.Models
|
||
|
{
|
||
|
public interface IComponentModel : IId
|
||
|
{
|
||
|
string ComponentName { get; }
|
||
|
double Cost { get; }
|
||
|
}
|
||
|
}
|