kagbie3nn@mail.ru 688621e4ef 2 усл
2024-06-17 23:07:23 +04:00

18 lines
424 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputersShopDataModels.Models
{
public interface IShopModel : IId
{
string ShopName { get; }
string Adress { get; }
DateTime OpeningDate { get; }
Dictionary<int, (IComputerModel, int)> ShopComputers { get; }
public int Capacity { get; }
}
}