PIbd-22_Razzhivin_A.S._Gift.../GiftShop/GiftShopContracts/BindingModels/ComponentBindingModel.cs

17 lines
411 B
C#
Raw Permalink Normal View History

2023-04-30 02:34:19 +04:00
using GiftShopDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GiftShopContracts.BindingModels
{
public class ComponentBindingModel : IComponentModel
{
public int Id { get; set; }
public string ComponentName { get; set; } = string.Empty;
public double Cost { get; set; }
}
}