PIbd-23_Sergunov_M.A._GiftShop/GiftShop/GiftShopContracts/BindingModels/ComponentBindingModel.cs

14 lines
297 B
C#

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