ISEbd_21_Kuklew_M.I._Softwa.../SoftwareInstallationContracts/BindingModels/ComponentBindingModel.cs

13 lines
320 B
C#
Raw Normal View History

2024-04-07 16:54:02 +04:00
using SoftwareInstallationDataModels.Models;
namespace SoftwareInstallationContracts.BindingModels
{
public class ComponentBindingModel : IComponentModel
{
public int Id { get; set; }
2024-05-12 14:38:32 +04:00
2024-04-07 16:54:02 +04:00
public string ComponentName { get; set; } = string.Empty;
2024-05-12 14:38:32 +04:00
2024-04-07 16:54:02 +04:00
public double Cost { get; set; }
}
2024-05-12 14:38:32 +04:00
}