Добавлена модель магазина

This commit is contained in:
Никита Потапов 2024-03-11 09:55:49 +04:00
parent 267df68fda
commit be4dd3804f

View File

@ -0,0 +1,10 @@
namespace SecuritySystemDataModels.Models
{
public interface IShopModel : IId
{
string Name { get; }
string Address { get; }
DateTime OpeningDate { get; }
Dictionary<int, (ISecureModel, int)> ShopSecures { get; }
}
}