16 lines
434 B
C#
Raw Permalink Normal View History

2024-03-05 07:44:51 +04:00
using PrecastConcretePlantDataModels.Models;
using System;
2024-02-08 20:30:24 +04:00
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PrecastConcretePlantContracts.BindingModels
{
2024-02-09 20:42:20 +04:00
public class ComponentBindingModel : IComponentModel
2024-02-08 20:30:24 +04:00
{
2024-02-09 20:42:20 +04:00
public int Id { get; set; }
public string ComponentName { get; set; } = string.Empty;
public double Cost { get; set; }
2024-02-08 20:30:24 +04:00
}
2024-03-05 07:44:51 +04:00
}