SushiBarBase/SushiBar/SushiBarContracts/BindingModels/ShopBindingModel.cs

18 lines
488 B
C#
Raw Permalink Normal View History

2024-02-28 17:12:10 +04:00
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;
2024-05-05 18:56:39 +04:00
public Dictionary<int, (ISushiModel, int)> ShopSushi
{
get;
set;
} = new();
2024-02-28 17:12:10 +04:00
}
}