2023-01-31 13:10:23 +04:00
|
|
|
|
using SoftwareInstallationDataModels.Models;
|
2023-01-29 22:45:01 +04:00
|
|
|
|
|
2023-01-30 14:48:39 +04:00
|
|
|
|
namespace SofrwareInstallationContracts.BindingModels
|
2023-01-29 22:45:01 +04:00
|
|
|
|
{
|
|
|
|
|
public class ComponentBindingModel : IComponentModel
|
|
|
|
|
{
|
|
|
|
|
public string ComponentName { get; set; } = string.Empty;
|
|
|
|
|
public double Cost { get; set; }
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|