namespace SecuritySystemDataModels.Models { public interface IShopModel : IId { string Name { get; } string Address { get; } DateTime OpeningDate { get; } Dictionary ShopSecures { get; } } }