17 lines
384 B
C#
17 lines
384 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace IceCreamShopDataModels.Models
|
|||
|
{
|
|||
|
public interface IShopModel : IId
|
|||
|
{
|
|||
|
string ShopName { get; }
|
|||
|
string Address { get; }
|
|||
|
DateTime DateOpen { get; }
|
|||
|
Dictionary<int, (IIceCreamModel, int)> ShopIceCreams { get; }
|
|||
|
}
|
|||
|
}
|