15 lines
446 B
C#
15 lines
446 B
C#
using ConfectioneryDataModels.Models;
|
|
namespace ConfectioneryContracts.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 DateOpen { get; set; }
|
|
public int MaxCapacity { get; set; }
|
|
public Dictionary<int, (IPastryModel, int)>
|
|
ShopPastries { get; set; } = new();
|
|
}
|
|
}
|