PIbd-22_Aleksankina_V.S._Co.../Confectionery/ConfectioneryContracts/BindingModels/ComponentBindingModel.cs

17 lines
423 B
C#
Raw Normal View History

2024-04-10 01:52:22 +04:00
using ConfectioneryDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConfectioneryContracts.BindingModels
{
public class ComponentBindingModel : IComponentModel
{
public int Id { get; set; }
public string ComponentName { get; set; } = string.Empty;
public double Cost { get; set; }
}
}