SushiBarBase/SushiBar/SushiBarContracts/BindingModels/ShopBindingModel.cs
bekodeg 49791fd7ff +
2024-05-05 18:56:39 +04:00

18 lines
488 B
C#

using SushiBarDataModels.Models;
namespace SushiBarContracts.BindingModels
{
public class ShopBindingModel : IShopModel
{
public int Id { get; set; }
public string ShopName { get; set; } = string.Empty;
public string Address { get; set; } = string.Empty;
public DateTime DateCreate { get; set; } = DateTime.Now;
public Dictionary<int, (ISushiModel, int)> ShopSushi
{
get;
set;
} = new();
}
}