namespace ShipyardDataModels.Models { public interface IShipModel : IId { string ShipName { get; } double Price { get; } Dictionary ShipComponents { get; } } }