namespace ShipyardDataModels.Models { public interface IShopModel : IId { string ShopName { get; } string Address { get; } DateTime DateOpen { get; } Dictionary ShopShips { get; } } }