PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopContracts/BindingModels/ComponentBindingModel.cs

14 lines
297 B
C#
Raw Normal View History

2024-02-06 12:37:25 +04:00
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; }
}
}