PIbd-21_Potapov_N.S._Securi.../SecuritySystem/SecuritySystemDataModels/Models/IShopModel.cs

11 lines
264 B
C#
Raw Normal View History

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