bekodeg 49791fd7ff +
2024-05-05 18:56:39 +04:00

11 lines
250 B
C#

namespace SushiBarDataModels.Models
{
public interface IShopModel
{
string ShopName { get; }
string Address { get; }
DateTime DateCreate { get; }
Dictionary<int, (ISushiModel, int)> ShopSushi {get;}
}
}