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