Files
ISEbd-21_Koscheev.M.S.Softw…/SoftwareInstallation/SoftwareInstallationContracts/BindingModels/ComponentBindingModel.cs
2023-02-06 16:15:16 +04:00

11 lines
318 B
C#

using SoftwareInstallationDataModels.Models;
namespace SoftwareInstallationContracts.BindingModels
{
public class ComponentBindingModel : IComponentModel
{
public int Id { get; set; }
public string ComponentName { get; set; } = string.Empty;
public double Cost { get; set; }
}
}