2023-03-06 00:18:18 +04:00

13 lines
307 B
C#

using SoftwareInstallationDataModels.Models;
namespace SoftwareInstallationDataModels
{
public interface IShopModel : IId
{
string Name { get; }
string Address { get; }
DateTime DateOpening { get; }
Dictionary<int, (IPackageModel, int)> Pastries { get; }
}
}