antoc0der de1f96bbe6 ъ
2024-02-14 21:27:41 +03:00

19 lines
521 B
C#

using FlowerShopDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlowerShopContracts.BindingModels
{
public class ShopBindingModel : IShopModel
{
public int Id { get; set; }
public string ShopName { get; set; }
public string Address { get; set; }
public DateTime DateOpen { get; set; }
public Dictionary<int, (IFlowerModel, int)> ShopFlowers { get; set; } = new();
}
}