14 lines
345 B
C#
Raw Normal View History

2023-03-06 00:18:18 +04:00
using SoftwareInstallationDataModels.Models;
namespace SoftwareInstallationDataModels
{
public interface IShopModel : IId
{
string Name { get; }
string Address { get; }
2023-03-18 01:08:33 +04:00
int MaxCountPackages { get; }
2023-03-06 00:18:18 +04:00
DateTime DateOpening { get; }
2023-03-18 01:08:33 +04:00
Dictionary<int, (IPackageModel, int)> Packages { get; }
2023-03-06 00:18:18 +04:00
}
}