13 lines
292 B
C#
13 lines
292 B
C#
using ConfectioneryDataModels.Models;
|
|
|
|
namespace ConfectioneryDataModels
|
|
{
|
|
public interface IShopModel : IId
|
|
{
|
|
string Name { get; }
|
|
string Address { get; }
|
|
DateTime DateOpening { get; }
|
|
Dictionary<int, (IPastryModel, int)> Pastries { get; }
|
|
}
|
|
}
|