Index: Ringtoets/Common/src/Ringtoets.Common.IO/Readers/ReadCalculationGroup.cs =================================================================== diff -u -r59fcd17973dee55b14a079325767f28e8cb535c2 -rb0021f2db39d2455a22c14bd3708ff2fc2a9e817 --- Ringtoets/Common/src/Ringtoets.Common.IO/Readers/ReadCalculationGroup.cs (.../ReadCalculationGroup.cs) (revision 59fcd17973dee55b14a079325767f28e8cb535c2) +++ Ringtoets/Common/src/Ringtoets.Common.IO/Readers/ReadCalculationGroup.cs (.../ReadCalculationGroup.cs) (revision b0021f2db39d2455a22c14bd3708ff2fc2a9e817) @@ -26,23 +26,23 @@ /// /// Class that represents a calculation group that is read via . /// - public class ReadCalculationGroup : IReadCalculationItem + public class ReadCalculationGroup : IReadConfigurationItem { /// /// Creates a new instance of . /// /// The name of the calculation group. - /// The collection of nested . - public ReadCalculationGroup(string name, IEnumerable items) + /// The collection of nested . + public ReadCalculationGroup(string name, IEnumerable items) { Name = name; Items = items; } /// - /// Gets the collection of nested . + /// Gets the collection of nested . /// - public IEnumerable Items { get; private set; } + public IEnumerable Items { get; private set; } public string Name { get; } }