2024-03-11 09:55:49 +04:00
|
|
|
|
namespace SecuritySystemDataModels.Models
|
|
|
|
|
{
|
|
|
|
|
public interface IShopModel : IId
|
|
|
|
|
{
|
|
|
|
|
string Name { get; }
|
|
|
|
|
string Address { get; }
|
|
|
|
|
DateTime OpeningDate { get; }
|
2024-04-07 20:45:51 +04:00
|
|
|
|
int MaxSecuresCount { get; }
|
2024-03-11 09:55:49 +04:00
|
|
|
|
Dictionary<int, (ISecureModel, int)> ShopSecures { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|