PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopDataModels/Models/IShopModel.cs

17 lines
389 B
C#
Raw Normal View History

2024-05-18 17:45:21 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GiftShopDataModels.Models
{
public interface IShopModel : IId
{
public string ShopName { get; }
public string ShopAddress { get; }
DateTime OpeningDate { get; }
Dictionary<int, (IGiftModel, int)> Gifts { get; }
}
}