17 lines
378 B
C#
Raw Normal View History

2024-02-14 21:27:41 +03:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlowerShopDataModels.Models
{
public interface IShopModel : IId
{
string ShopName { get; }
string Address { get; }
DateTime DateOpen { get; }
Dictionary<int, (IFlowerModel, int)> ShopFlowers { get; }
}
}