PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopContracts/BindingModels/ComponentBindingModel.cs
Arkadiy Radaev f31982e59f res1
2024-02-06 12:37:25 +04:00

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; }
}
}