8 lines
176 B
C#
Raw Normal View History

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