2023-03-14 15:20:02 +04:00

9 lines
177 B
C#

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