13 lines
306 B
C#
Raw Normal View History

2023-03-01 10:48:56 +04:00
using ComputersShopDataModels.Models;
namespace ComputersShopContracts.BindingModels
{
public class ComponentBindingModel : IComponentModel
{
public int Id { get; set; }
public string ComponentName { get; set; } = string.Empty;
public double Cost { get; set; }
}
}