PIbd-23_Elatomtsev_L.K._Con.../Confectionery/ConfectioneryContracts/BindingModels/ComponentBindingModel.cs

11 lines
304 B
C#
Raw Normal View History

2024-03-13 14:54:56 +04:00
using ConfectioneryDataModels.Models;
namespace ConfectioneryContracts.BindingModels
{
public class ComponentBindingModel : IComponentModel
{
public int Id { get; set; }
public string ComponentName { get; set; } = string.Empty;
public double Cost { get; set; }
}
}