17 lines
423 B
C#
Raw Normal View History

2024-04-13 01:58:54 +04:00
using LawFirmDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2024-05-10 23:48:48 +04:00
namespace LawFirmContracts.BindingModels.BindingModels
2024-04-13 01:58:54 +04:00
{
public class ComponentBindingModel : IComponentModel
{
public int Id { get; set; }
public string ComponentName { get; set; } = string.Empty;
public double Cost { get; set; }
}
}