SUBD_Aleikin/Restaurant/RestaurantContracts/BindingModels/ProductBindingModel.cs
Артём Алейкин e52b239c08 BusinessLogic,
Contracts,
DataModels,
View(пока пусто)
2023-05-02 22:51:41 +04:00

23 lines
539 B
C#

using RestaurantDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RestaurantContracts.BindingModels
{
public class ProductBindingModel : IProductModel
{
public string Type { get; set; } = string.Empty;
public int Price { get; set; }
public int Count { get; set; }
public Dictionary<int, (IComponentModel, int)> ProductComponents { get; set; } = new();
public int Id { get; set; }
}
}