10 lines
231 B
C#
10 lines
231 B
C#
namespace ConfectioneryDataModels.Models
|
|
{
|
|
public interface IShopModel : IId
|
|
{
|
|
string ShopName { get; }
|
|
string Address { get; }
|
|
DateTime DateOpen { get; }
|
|
Dictionary<int, (IPastryModel, int)> ShopPastries { get; }
|
|
}
|
|
} |