namespace PrecastConcretePlantDataModels.Models { public interface IReinforcedModel : IId { string ReinforcedName { get; } double Price { get; } Dictionary ReinforcedComponents { get; } } }